Skip to content

Commit

Permalink
Recognize .tgz as tgz BUNDLE_TYPE (#98)
Browse files Browse the repository at this point in the history
* fix: recognize .tgz as tgz BUNDLE_TYPE

* fix: .tar.gz and .tgz match in one line
  • Loading branch information
a-wiacek authored Sep 13, 2024
1 parent e6b67d8 commit edbd956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ case "$ZIP_FILENAME" in
*.tar)
BUNDLE_TYPE=tar
;;
*.tar.gz)
*.tar.gz|*.tgz)
BUNDLE_TYPE=tgz
;;
*)
Expand Down

0 comments on commit edbd956

Please # to comment.