tbh this perms thing is just annoying

This commit is contained in:
shockrahwow 2019-11-26 21:18:40 -08:00
parent 2f18510a37
commit 64246b2111
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# Just setting up all things npm here # Just setting up all things npm here
npm install npm install
chmod 1755 node_modules/electron/dist/chrome-sandbox chmod 7755 node_modules/electron/dist/chrome-sandbox
sudo chown root node_modules/electron/dist/chrome-sandbox sudo chown root node_modules/electron/dist/chrome-sandbox

View File

@ -9,11 +9,12 @@ bootstrapBundle='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap
bootstrap='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' bootstrap='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css'
faCss='https://use.fontawesome.com/releases/v5.8.2/css/all.css' faCss='https://use.fontawesome.com/releases/v5.8.2/css/all.css'
purecss='https://unpkg.com/purecss@1.0.1/build/pure-min.css'
for js in $jquery $bootstrapBundle;do for js in $jquery $bootstrapBundle;do
wget -O $jsFolder/`basename $js` $js wget -O $jsFolder/`basename $js` $js
done done
for css in $bootstrap $faCss;do for css in $bootstrap $faCss $purecss;do
wget -O $cssFolder/`basename $css` $js wget -O $cssFolder/`basename $css` $js
done done