Changed entrypoing script so that it will wait for the system command to finish before running user command.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-10-01 22:50:13 +08:00
parent 148ca97819
commit 2f99261d26

View File

@@ -16,7 +16,7 @@ sudo mkhomedir_helper `whoami`
touch $LOG_FILE touch $LOG_FILE
eval $SYS_COMMAND_INIT & eval $SYS_COMMAND_INIT
eval $USER_COMMAND_INIT & eval $USER_COMMAND_INIT &
tail -f $LOG_FILE & wait ${!} tail -f $LOG_FILE & wait ${!}