Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build_framework.ios.sh: echo/exit from current shell (#900)
The `()` syntax spawns a subshell and executes the commands. Hence, the "successful" `exit 0` is trapped and is effectively a no-op. This change instead moves the execution of the `echo` statement to the parent shell which causes the `exit 0` to actually kill the process where it is.
- Loading branch information