Skip to content

Commit

Permalink
fix compress_file usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcc0nn3ll committed Jun 21, 2024
1 parent 2f9ea6d commit d8c31b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jetty-website.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,15 @@ function main() {
check_environment;
#build_ui;
build_site;
compress_files "target/site/_" #TODO choose dir better
compress_files;
deploy_site "$BUILT_SITE_DIR" "$STAGE_DIR";
exit 0;
fi

if [[ $directive == "release" ]]; then
check_environment;
build_site;
compress_files "target/site/_"
compress_files;
deploy_site "$BUILT_SITE_DIR" "$RELEASE_DIR";

exit 0;
Expand Down

0 comments on commit d8c31b5

Please sign in to comment.