From 5d26f76ba191f4db90a806b6d9741abda80c1af9 Mon Sep 17 00:00:00 2001 From: Arlo Breault Date: Fri, 26 Jul 2019 15:09:05 -0400 Subject: [PATCH] Brace expansion is a bashism --- proxy/make.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/make.js b/proxy/make.js index 52ee098..940e980 100755 --- a/proxy/make.js +++ b/proxy/make.js @@ -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.'); });