Skip to content
Snippets Groups Projects
Commit 5d26f76b authored by Arlo Breault's avatar Arlo Breault Committed by Cecylia Bocovich
Browse files

Brace expansion is a bashism

parent 03512bfa
No related branches found
Tags webext-0.0.6
No related merge requests found
......@@ -79,7 +79,7 @@ task('build', 'build the snowflake proxy', function() {
task('webext', 'build the webextension', function() {
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');
console.log('Webextension prepared.');
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment