2020-07-02 13:43:35 +00:00
|
|
|
echo "Build started" > "$lockFifo"
|
|
|
|
|
2005-01-28 20:36:46 +00:00
|
|
|
mkdir $out
|
|
|
|
echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar
|
|
|
|
|
2020-07-02 13:43:35 +00:00
|
|
|
# Wait for someone to write on the fifo
|
|
|
|
cat "$lockFifo"
|
2008-08-14 09:26:30 +00:00
|
|
|
|
|
|
|
# $out should not have been GC'ed while we were sleeping, but just in
|
|
|
|
# case...
|
|
|
|
mkdir -p $out
|
2005-01-28 20:36:46 +00:00
|
|
|
|
2005-01-31 12:19:53 +00:00
|
|
|
# Check that the GC hasn't deleted the lock on our output.
|
|
|
|
test -e "$out.lock"
|
|
|
|
|
|
|
|
ln -s $input2 $out/input-2
|