mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
9 lines
223 B
Bash
9 lines
223 B
Bash
# shellcheck shell=bash
|
|
# shellcheck disable=SC2154
|
|
echo dummy: "$dummy"
|
|
if test -n "$dummy"; then sleep 2; fi
|
|
# shellcheck disable=SC2154
|
|
mkdir "$out"
|
|
mkdir "$out"/bla
|
|
echo "Hello World!" > "$out"/foo
|
|
ln -s foo "$out"/bar
|