mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Purity checking should accept $TMP and not just /tmp
This commit is contained in:
parent
176d5e090a
commit
fb777be7d2
@ -69,9 +69,9 @@ badPath() {
|
||||
# directory (including the build directory).
|
||||
test \
|
||||
"$p" != "/dev/null" -a \
|
||||
"${p:0:${#NIX_STORE}}" != "$NIX_STORE" -a \
|
||||
"${p:0:4}" != "/tmp" -a \
|
||||
"${p:0:${#NIX_BUILD_TOP}}" != "$NIX_BUILD_TOP"
|
||||
"${p#${NIX_STORE}}" = "$p" -a \
|
||||
"${p#${TMP:-/tmp}}" = "$p" -a \
|
||||
"${p#${NIX_BUILD_TOP}}" = "$p"
|
||||
}
|
||||
|
||||
expandResponseParams() {
|
||||
|
Loading…
Reference in New Issue
Block a user