mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
Move the pointers to the repos so that we can keep pointers to more than one version in git, and choose which one to use from one place, making it easier to switch between versions.
7 lines
153 B
Bash
Executable File
7 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Try to figure out the user's PATH to pick up their installed utilities.
|
|
export PATH="$PATH:$(sudo -u "$USER" -i printenv PATH)"
|
|
|
|
ninja "$@"
|