Skip to content

Commit

Permalink
Auto-merge for PR #59 via VersionBot
Browse files Browse the repository at this point in the history
fix(package): Fix prebuild script being run on build
  • Loading branch information
resin-io-modules-versionbot[bot] authored Dec 14, 2017
2 parents 5ca1568 + 3ff1a51 commit ec66978
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

## v1.3.7 - 2017-12-14

* Fix(package): Fix prebuild script being run on build #59 [Jonas Hermsmeier]

## v1.3.6 - 2017-12-12

* Test(ci): Fix pip -> pip2 on Travis CI #60 [Jonas Hermsmeier]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mountutils",
"version": "1.3.6",
"version": "1.3.7",
"main": "index.js",
"description": "Cross platform mount related utilities",
"homepage": "https://github.com/resin-io-modules/mountutils",
Expand Down Expand Up @@ -29,7 +29,7 @@
"lint": "npm run lint-js && npm run lint-cpp",
"test": "npm run lint && mocha tests -R spec",
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --all --strip"
"prebuild-release": "prebuild --all --strip"
},
"author": "Juan Cruz Viotti <juan@resin.io>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/prebuild-publish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

if %APPVEYOR_REPO_BRANCH% == master (
if %GITHUB_TOKEN% neq "" (
npm run prebuild -- -u %GITHUB_TOKEN%
npm run prebuild-release -- -u %GITHUB_TOKEN%
)
)
2 changes: 1 addition & 1 deletion scripts/prebuild-publish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

if [[ $GITHUB_TOKEN ]]; then
npm run prebuild -- -u "$GITHUB_TOKEN"
npm run prebuild-release -- -u "$GITHUB_TOKEN"
fi

0 comments on commit ec66978

Please sign in to comment.