Brace expansion is a bashism

This commit is contained in:
Arlo Breault 2019-07-26 15:09:05 -04:00 committed by Cecylia Bocovich
parent 03512bfa29
commit 5d26f76ba1

View file

@ -79,7 +79,7 @@ task('build', 'build the snowflake proxy', function() {
task('webext', 'build the webextension', function() { task('webext', 'build the webextension', function() {
exec('mkdir -p webext'); exec('mkdir -p webext');
exec(`cp -r ${STATIC}/{${SHARED_FILES.join(',')}} webext/`); exec(`cp -r ${STATIC}/{${SHARED_FILES.join(',')}} webext/`, { shell: '/bin/bash' });
concatJS('webext', 'webext', 'snowflake.js'); concatJS('webext', 'webext', 'snowflake.js');
console.log('Webextension prepared.'); console.log('Webextension prepared.');
}); });