mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
5 lines
179 B
Bash
5 lines
179 B
Bash
# shellcheck shell=bash
|
|
if test "$IMPURE_VAR1" != "foo"; then exit 1; fi
|
|
if test "$IMPURE_VAR2" != "bar"; then exit 1; fi
|
|
# shellcheck disable=SC2154
|
|
echo "Hello World!" > "$out"
|