Skip to content

Commit edbd956

Browse files
authored
Recognize .tgz as tgz BUNDLE_TYPE (#98)
* fix: recognize .tgz as tgz BUNDLE_TYPE * fix: .tar.gz and .tgz match in one line
1 parent e6b67d8 commit edbd956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ case "$ZIP_FILENAME" in
187187
*.tar)
188188
BUNDLE_TYPE=tar
189189
;;
190-
*.tar.gz)
190+
*.tar.gz|*.tgz)
191191
BUNDLE_TYPE=tgz
192192
;;
193193
*)

0 commit comments

Comments
 (0)