-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:Naereen/kaamelott-soundboard-desk…
…top-app
- Loading branch information
Showing
1 changed file
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "Removing the bower_components and node_modules directories from compiled apps..." | ||
find . -type d -iname 'kaamelott-soundboard-desktop-app*' -exec echo rm -rvf ./{}/bower_components/ ./{}/node_modules/ \; | ||
echo "OK ? Ctrl+C to cancel, Enter to validate" | ||
read || exit | ||
find . -type d -iname 'kaamelott-soundboard-desktop-app*' -exec rm -rvf ./{}/bower_components/ ./{}/node_modules/ \; | ||
echo "DONE" | ||
echo "Removed the bower_components and node_modules directories from compiled apps :-)" | ||
|
||
echo | ||
|
||
echo "Zipping all the applications..." | ||
find . -type d -iname 'kaamelott-soundboard-desktop-app*' -exec echo zip -r -9 -y zips/{}.zip {} \; | ||
|
||
echo "OK ? Ctrl+C to cancel" | ||
echo "OK ? Ctrl+C to cancel, Enter to validate" | ||
read || exit | ||
|
||
find . -type d -iname 'kaamelott-soundboard-desktop-app*' -exec zip -r -9 -y zips/{}.zip {} \; | ||
echo "DONE" | ||
echo "Zipped all the applications in zips/ folder... :-)" | ||
echo "Now, go to https://github.com/Naereen/kaamelott-soundboard-desktop-app/releases/edit/ and update the latest release..." | ||
echo "Zipped all the applications in zips/ folder :-)" | ||
|
||
echo | ||
|
||
echo "Now, go to https://github.com/Naereen/kaamelott-soundboard-desktop-app/releases/edit/ and update the latest release..." |