Skip to content

Commit

Permalink
[bugfix] Fix space for path
Browse files Browse the repository at this point in the history
  • Loading branch information
AloneMonkey committed Mar 16, 2018
1 parent afa18c3 commit c09608a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function pack(){
TARGET_IPA_PATH=$(find "$SRCROOT/$TARGET_NAME" -type f | grep ".ipa$" | head -n 1)

if [[ $TARGET_APP_PATH ]]; then
cp -rf $TARGET_APP_PATH "$SRCROOT/$TARGET_NAME/TargetApp"
cp -rf "$TARGET_APP_PATH" "$SRCROOT/$TARGET_NAME/TargetApp"
fi

if [[ ! $TARGET_APP_PATH ]] && [[ ! $TARGET_IPA_PATH ]] && [[ ${MONKEYDEV_TARGET_APP} != "Optional" ]]; then
Expand Down

0 comments on commit c09608a

Please sign in to comment.