pull/246/head
Andrew Kahr 2023-12-10 16:48:26 -08:00
parent 3776fc8aee
commit 095b73c37c
1 changed files with 2 additions and 2 deletions

View File

@ -32,12 +32,12 @@ if [[ "$RUN_AS_HOST_USER" == "true" ]]; then
set +e set +e
# Switch to the host user so we can create files with the correct ownership # Switch to the host user so we can create files with the correct ownership
su $USERNAME -c "$SHELL -c 'source /steps/runsteps.sh'" su $USERNAME -c "$SHELL -c 'source /steps/run_steps.sh'"
else else
echo "Running as root" echo "Running as root"
# Run as root # Run as root
source /steps/runsteps.sh source /steps/run_steps.sh
fi fi
exit $? exit $?