Skip to content

Instantly share code, notes, and snippets.

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