From 095b73c37c12f8d09026fffc3b93e4facca1fe1f Mon Sep 17 00:00:00 2001 From: Andrew Kahr <22359829+AndrewKahr@users.noreply.github.com> Date: Sun, 10 Dec 2023 16:48:26 -0800 Subject: [PATCH] Fix path --- dist/platforms/ubuntu/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/platforms/ubuntu/entrypoint.sh b/dist/platforms/ubuntu/entrypoint.sh index 6390a83..923602c 100755 --- a/dist/platforms/ubuntu/entrypoint.sh +++ b/dist/platforms/ubuntu/entrypoint.sh @@ -32,12 +32,12 @@ if [[ "$RUN_AS_HOST_USER" == "true" ]]; then set +e # 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 echo "Running as root" # Run as root - source /steps/runsteps.sh + source /steps/run_steps.sh fi exit $?