Files
lix/tests/functional2/testlib/global_assets/dependencies.builder0.sh
T
2025-08-24 10:38:39 +02:00

18 lines
285 B
Bash

[ "${input1: -2}" = /. ]
[ "${input2: -2}" = /. ]
echo $PATH
mkdir $out
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
ln -s $input2 $out/reference-to-input-2
# Self-reference.
ln -s $out $out/self
# Executable.
echo program > $out/program
chmod +x $out/program
echo FOO