-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Template fix for scripts - Fixes Clean (#8260)
* osx fixes for scripts on build / clean work * Template osx fix quotes * oF script to route update and download commands - 0.1.0 - init update / download (cherry picked from commit c59fac7) * downloader [4.4.0 ~ 4.5.0] - fix close connection for zero urls. shfmt formatted bash (cherry picked from commit 8488c46) * Emscripten fix download 32 * of added upgrade command. scripts/dev/upgrade.sh added upgrade dev commands to find and replace strings from old versions automatically with sed. (cherry picked from commit 15fc367) * of script fix variables (cherry picked from commit 7ee0b59) * osx template
- Loading branch information
Showing
7 changed files
with
409 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# pipe commands to core oF script | ||
_OF_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
_OF_DIR="$(realpath "$_OF_DIR")" | ||
_OF_SCRIPT="$(realpath "$_OF_DIR/scripts/of.sh")" | ||
echo "$(date): [openFrameworks: $@]" | ||
source "$_OF_SCRIPT" $@ | ||
EXIT_CODE=$? | ||
exit ${EXIT_CODE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.