Created
August 2, 2018 12:28
-
-
Save eminetto/7a6843451fe6b656c275b2d8326c8c63 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash -e | |
watch="api core" | |
. scripts/shouldIBuild.sh | |
shouldIBuild | |
if [[ $SHOULD_BUILD = 0 ]]; then | |
exit 0 | |
fi | |
make linux-binaries-api | |
BUILD_EXIT_STATUS=$? | |
exit $BUILD_EXIT_STATUS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment