Fixed a missing sudo in the entrypoint.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-12-11 11:23:33 +08:00
parent b25c90a79f
commit 7d9ccc97aa

View File

@@ -14,7 +14,7 @@ trap 'kill ${!}; term_handler' SIGTERM
# setup home directory for the current user. It is useful for attaching vscode with container. # setup home directory for the current user. It is useful for attaching vscode with container.
sudo mkhomedir_helper `whoami` sudo mkhomedir_helper `whoami`
touch $LOG_FILE sudo touch $LOG_FILE
eval $SYS_COMMAND_INIT eval $SYS_COMMAND_INIT
eval $USER_COMMAND_INIT & eval $USER_COMMAND_INIT &