-
-
Save hotsphink/a91a34cfa07147ac93c98f5a7376f721 to your computer and use it in GitHub Desktop.
mkgist-created gist
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 | |
d="$(pwd)" | |
while [ "$d" != / ]; do | |
if [ -x "$d/mach" ] && [ -f "$d/mach" ]; then break; fi | |
d="$(dirname "$d")" | |
done | |
if [ "$d" = / ]; then | |
d="$HOME/src/mozilla" | |
fi | |
exec "$d/mach" "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment