mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
7 lines
152 B
Bash
Executable File
7 lines
152 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 echo '$PATH')"
|
|
|
|
ninja "$@"
|