Switch back to npm temporarily for CI build

This commit is contained in:
squidfunk 2017-03-16 12:46:35 +01:00
parent e54dcba38e
commit cd64b7372a

View File

@ -20,12 +20,12 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE. # IN THE SOFTWARE.
# Check if "yarn install" was executed # Check if "npm install" was executed
if [[ ! -d "$(yarn bin)" ]]; then if [[ ! -d "$(npm bin)" ]]; then
echo "\"node_modules\" not found:" echo "\"node_modules\" not found:"
echo "yarn install" echo "npm install"
exit 1 exit 1
fi fi
# Run command # Run command
"$(yarn bin)"/gulp build --clean --optimize --revision "$@" "$(npm bin)"/gulp build --clean --optimize --revision "$@"