From 7d9ccc97aa85e7eabb5929dbe941c6ed4aad2121 Mon Sep 17 00:00:00 2001 From: Ameer Hamza Date: Mon, 11 Dec 2023 11:23:33 +0800 Subject: [PATCH] Fixed a missing sudo in the entrypoint. --- scripts/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/entrypoint.sh b/scripts/entrypoint.sh index 749ae8d..51ee95b 100755 --- a/scripts/entrypoint.sh +++ b/scripts/entrypoint.sh @@ -14,7 +14,7 @@ trap 'kill ${!}; term_handler' SIGTERM # setup home directory for the current user. It is useful for attaching vscode with container. sudo mkhomedir_helper `whoami` -touch $LOG_FILE +sudo touch $LOG_FILE eval $SYS_COMMAND_INIT eval $USER_COMMAND_INIT &