From c0c0244ede1c19d2e0631726e2b74a13b4b3023f Mon Sep 17 00:00:00 2001 From: purple Date: Fri, 23 Jun 2023 22:04:52 +0200 Subject: [PATCH] Fix "zip" command not having correct arguments Why so many commits one by one? I need to test them one by one as well. Even if this one doesn't work, I'm going to bed, see you tomorrow. --- blueprint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprint.sh b/blueprint.sh index 07f5d36..16947ee 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -453,8 +453,8 @@ if [[ $2 == "-export" ]]; then eval $(parse_yaml .development/conf.yml); mkdir .storage/tmp/$info_identifier; cp -R .development/* .storage/tmp/$info_identifier/; - zip .storage/tmp/$info_identifier .storage/tmp/blueprint.zip; - mv .storage/tmp/blueprint.zip ../$info_identifier.blueprint; + zip .storage/tmp/$info_identifier; + mv .storage/tmp/$info_identifier.zip ../$info_identifier.blueprint; rm -R .storage/tmp/*; log_bright "[INFO] Extension files should be exported into your Pterodactyl directory now.";