[tor-commits] [snowflake/master] Brace expansion is a bashism
cohosh at torproject.org
cohosh at torproject.org
Sat Jul 27 16:03:34 UTC 2019
commit 5d26f76ba191f4db90a806b6d9741abda80c1af9
Author: Arlo Breault <arlolra at gmail.com>
Date: Fri Jul 26 15:09:05 2019 -0400
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.');
});
More information about the tor-commits
mailing list