diff --git a/appveyor.yml b/appveyor.yml index d76605d1c..63f93035b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,19 +10,18 @@ install: - set PATH=C:\Ruby23-x64\bin;%PATH% - ps: Install-Product node 6 x64 - yarn install - - type node_modules\.bin\grunt.cmd build_script: - yarn run icon-gen - del /f images\emoji\apple - mkdir images\emoji\apple - xcopy /Q components\emojidata\img-apple-64 images\emoji\apple - - node_modules\.bin\grunt + - node build\grunt.js - node_modules\.bin\build --em.environment=%SIGNAL_ENV% --publish=never test_script: - - node_modules\.bin\grunt test-release:win - - node_modules\.bin\grunt test + - node build\grunt.js test-release:win + - node build\grunt.js test artifacts: - path: dist/*.* diff --git a/build/grunt.js b/build/grunt.js new file mode 100644 index 000000000..e60487fb7 --- /dev/null +++ b/build/grunt.js @@ -0,0 +1,2 @@ +// because grunt.cmd is totally flakey on windows +require('grunt').cli();