mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-16 13:28:16 +00:00
13 lines
136 B
Bash
13 lines
136 B
Bash
|
#! @shell@
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
export PATH=@path@:$PATH
|
||
|
|
||
|
|
||
|
showSyntax() {
|
||
|
echo "$0: not implemented" >&2
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
showSyntax
|