2004-05-04 15:15:30 +03:00
|
|
|
echo "PATH=$PATH"
|
|
|
|
|
|
|
|
# Verify that the PATH is empty.
|
|
|
|
if mkdir foo; then exit 1; fi
|
|
|
|
|
|
|
|
# Set a PATH (!!! impure).
|
2006-07-21 16:21:43 +03:00
|
|
|
export PATH=$goodPath
|
2004-05-04 15:15:30 +03:00
|
|
|
|
|
|
|
mkdir $out
|
|
|
|
|
|
|
|
echo "Hello World!" > $out/hello
|