Created
June 16, 2020 18:41
-
-
Save hotsphink/af8fe120c00d6d8e2f3df2426102716a 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