commit: 3da50962fde239bbd3b1c1a1632fae0adfdc65fa
parent b58c513e8fab2e841f7cf70c8d5371ae3fa31fea
Author: Dor Askayo <dor.askayo@gmail.com>
Date: Thu, 13 Jul 2023 13:03:45 +0300
Run run.sh with a clean environment
All expected environment variables are passed through the .env file.
Any other variable passed from /init and the environment in which it
is executed only "pollutes" the build environment.
No change in package hashes.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sysb/init b/sysb/init
@@ -43,4 +43,4 @@ PREFIX=${PREFIX}
SOURCES=${SOURCES}
EOF
-exec ./run.sh
+exec env -i bash run.sh
diff --git a/sysc/init b/sysc/init
@@ -81,4 +81,4 @@ MAKEJOBS=${MAKEJOBS}
INTERNAL_CI=${INTERNAL_CI}
EOF
-exec ./run.sh
+exec env -i bash run.sh