From edbd956d0aeaf9b1fec21bc3f2a2db9311dad983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksander=20Wi=C4=85cek?= <33523701+a-wiacek@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:24:46 +0200 Subject: [PATCH] Recognize .tgz as tgz BUNDLE_TYPE (#98) * fix: recognize .tgz as tgz BUNDLE_TYPE * fix: .tar.gz and .tgz match in one line --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 669e817..72ced8d 100755 --- a/deploy.sh +++ b/deploy.sh @@ -187,7 +187,7 @@ case "$ZIP_FILENAME" in *.tar) BUNDLE_TYPE=tar ;; - *.tar.gz) + *.tar.gz|*.tgz) BUNDLE_TYPE=tgz ;; *)