mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
8 lines
228 B
Bash
8 lines
228 B
Bash
# shellcheck shell=bash
|
|
# shellcheck disable=SC2154
|
|
mkdir "$out"
|
|
mkdir "$out"/bin
|
|
echo "#! $shell" > "$out"/bin/"$progName"
|
|
# shellcheck disable=SC2154
|
|
echo "echo $name" >> "$out"/bin/"$progName"
|
|
chmod +x "$out"/bin/"$progName"
|