Skip to content

Commit

Permalink
+ Packing Script für Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Saphareas committed Oct 23, 2018
1 parent acbc663 commit d861b7d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ desktop.ini
icons/action.xcf
TODO.txt
.releases
releases/*
*.zip
ps-dark-*
*/desktop\.ini
16 changes: 16 additions & 0 deletions pack.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
mkdir temp
cp -Rv _shared/* temp/
cp -Rv chrome/* temp/
cd temp
7z a -tzip ../releases/chrome.zip *
cd ..
cp -Rv firefox/* temp/
cd temp
7z a -tzip ../releases/firefox.zip *
cd ..
cp -Rv edge/* temp/
cd temp
7z a -tzip ../releases/edge.zip *
cd ..
rm -Rv temp

0 comments on commit d861b7d

Please sign in to comment.