From e53e882d96e154867a55f30a4cf0984b4696cd5d Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Thu, 13 Oct 2022 13:43:14 +0400 Subject: [PATCH] Script for adding files to ZIP --- .gitignore | 1 + archive.sh | 2 ++ clean.sh | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100755 archive.sh diff --git a/.gitignore b/.gitignore index 1e5de46..7010de5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +built.zip dist/ .vscode/ diff --git a/archive.sh b/archive.sh new file mode 100755 index 0000000..30b06eb --- /dev/null +++ b/archive.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +7z a built.zip dist/* diff --git a/clean.sh b/clean.sh index ea2350b..7358c68 100755 --- a/clean.sh +++ b/clean.sh @@ -1,2 +1,2 @@ #!/usr/bin/env bash -rm -rf dist/ +rm -rf dist/ built.zip