mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
14 lines
821 B
Diff
14 lines
821 B
Diff
diff --git a/spread/client.go b/spread/client.go
|
|
index c72d48a..e927567 100644
|
|
--- a/spread/client.go
|
|
+++ b/spread/client.go
|
|
@@ -791,7 +791,7 @@ func (s *localScript) run() (stdout, stderr []byte, err error) {
|
|
buf.WriteString("NOMATCH() { { set +xu; } 2> /dev/null; local stdin=$(cat); if echo $stdin | grep -q -E \"$@\"; then echo \"NOMATCH pattern='$@' found in:\n$stdin\">&2; return 1; fi }\n")
|
|
buf.WriteString("export DEBIAN_FRONTEND=noninteractive\n")
|
|
buf.WriteString("export DEBIAN_PRIORITY=critical\n")
|
|
- buf.WriteString("export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin\n")
|
|
+ buf.WriteString(fmt.Sprintf("export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:%s\n", os.Getenv("PATH")))
|
|
|
|
for _, k := range s.env.Keys() {
|
|
v := s.env.Get(k)
|