1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

Merge pull request #14073 from fzakaria/fzakaria/shellcheck-functional-dependencies.builder0

shellcheck fix functional/dependencies.builder0.sh
This commit is contained in:
John Ericson 2025-09-25 02:10:14 -04:00 committed by GitHub
commit 2898dbe2d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 7 deletions

View file

@ -1,16 +1,20 @@
# shellcheck shell=bash
# shellcheck disable=SC2154
[ "${input1: -2}" = /. ]
# shellcheck disable=SC2154
[ "${input2: -2}" = /. ]
mkdir $out
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
# shellcheck disable=SC2154
mkdir "$out"
echo "$(cat "$input1"/foo)$(cat "$input2"/bar)" > "$out"/foobar
ln -s $input2 $out/reference-to-input-2
ln -s "$input2" "$out"/reference-to-input-2
# Self-reference.
ln -s $out $out/self
ln -s "$out" "$out"/self
# Executable.
echo program > $out/program
chmod +x $out/program
echo program > "$out"/program
chmod +x "$out"/program
echo FOO