Skip to content

Commit

Permalink
FIX : Generate zip file on release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbierato committed May 30, 2024
1 parent 8574288 commit 0c523f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ComboJack.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n#cd \"${TARGET_BUILD_DIR}\"\ncp -f ${TARGET_BUILD_DIR}/ComboJack Installer/\n";
shellPath = /bin/bash;
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n#cd \"${TARGET_BUILD_DIR}\"\nif [ \"$CONFIGURATION\" == \"Release\" ]; then\n cp -f ${TARGET_BUILD_DIR}/ComboJack Installer/\n\n cd Installer\n archive=\"${PRODUCT_NAME}-${MODULE_VERSION}-$(echo $CONFIGURATION | tr /a-z/ /A-Z/).zip\"\n rm -rf *.zip\n zip -qry -FS \"${archive}\" *\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit 0c523f9

Please sign in to comment.