Sha256: f30b7a37ce0f0cc186bb3a2f4604f70c198394c3d693a30e397f7d3e480bf500
Contents?: true
Size: 345 Bytes
Versions: 14
Compression:
Stored size: 345 Bytes
Contents
#!/usr/bin/env bash if [[ $(git status --porcelain) != '' ]]; then printf "Working directory is dirty.\n"; printf "Please check that you committed any changes after running.\n" printf "You may need to rebuild the SDK by running:\n"; printf "\t./run-build\n" git status exit 1 else echo "Working directory is clean!" exit 0 fi
Version data entries
14 entries across 14 versions & 1 rubygems