diff --git a/.gitignore b/.gitignore index 96ed8f9..7528fd3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ desktop.ini icons/action.xcf TODO.txt .releases +releases/* *.zip ps-dark-* */desktop\.ini diff --git a/pack.sh b/pack.sh new file mode 100644 index 0000000..578af35 --- /dev/null +++ b/pack.sh @@ -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