Skip to content

Instantly share code, notes, and snippets.

@hotsphink
Created June 16, 2020 18:41
Show Gist options
  • Save hotsphink/af8fe120c00d6d8e2f3df2426102716a to your computer and use it in GitHub Desktop.
Save hotsphink/af8fe120c00d6d8e2f3df2426102716a to your computer and use it in GitHub Desktop.
mkgist-created gist
#!/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