Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Run all scripts even if iconVersioning fails. If the scripts are sourced, they run in the same process and the imagemagick/ghostscript checks exist the whole script. If we simply call them, it will not stop execution.

Chmod buildNumber.sh, as it was the only nonexecutable script.
  • Loading branch information
alanshutko committed May 13, 2015
1 parent d793604 commit 5d81c6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Pod/Assets/Scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

DIR="${BASH_SOURCE%/*}"
if [[ ! -d "${DIR}" ]]; then DIR="${PWD}"; fi
. "${DIR}/iconVersioning.sh"
. "${DIR}/lines.sh"
. "${DIR}/todo.sh"
. "${DIR}/user.sh"
"${DIR}/iconVersioning.sh"
"${DIR}/lines.sh"
"${DIR}/todo.sh"
"${DIR}/user.sh"

bundled_plist=$(find "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/" -name "KZBEnvironments.plist" | tr -d '\r')
bundled_settings=$(find "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/" -name "Settings.bundle" | tr -d '\r')
Expand Down
Empty file modified Pod/Assets/Scripts/buildNumber.sh
100644 → 100755
Empty file.

0 comments on commit 5d81c6f

Please sign in to comment.