Skip to content

Instantly share code, notes, and snippets.

@Cinderhaze
Created February 1, 2015 00:35
Show Gist options
  • Save Cinderhaze/fad4460b789a8bcd67fa to your computer and use it in GitHub Desktop.
Save Cinderhaze/fad4460b789a8bcd67fa to your computer and use it in GitHub Desktop.
PROVISIONED="/some-app-dir/PROVISIONED";
if [[ -f $PROVISIONED ]]; then
echo "Skipping provisioning";
exit;
else
echo "Provisioning";
fi
#...do provisioning things
touch $PROVISIONED;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment