From d861b7ddd1232448ce0aec08ff0d8690abf2c22b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gro=C3=9Fe?= Date: Tue, 23 Oct 2018 14:12:09 +0200 Subject: [PATCH] =?UTF-8?q?+=20Packing=20Script=20f=C3=BCr=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + pack.sh | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 pack.sh 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