1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 12:10:59 +01:00
nix/tests/simple.builder.sh
Wouter den Breejen ca3d96222a Merged R9207
2007-10-08 12:47:47 +00:00

11 lines
No EOL
190 B
Bash

echo "PATH=$PATH"
# Verify that the PATH is empty.
if mkdir foo 2> /dev/null; then exit 1; fi
# Set a PATH (!!! impure).
export PATH=$goodPath
mkdir $out
echo "Hello World!" > $out/hello