We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ab773f commit feb0b78Copy full SHA for feb0b78
1 file changed
steamcmd/entrypoint.sh
@@ -75,9 +75,9 @@ else
75
fi
76
77
# Replace Startup Variables
78
-modifiedStartup=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
+MODIFIED_STARTUP=$(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
79
80
# Run the Server
81
echo -e "Starting server..."
82
-echo -e ":/home/container$ ${modifiedStartup}"
83
-${modifiedStartup}
+echo -e ":/home/container$ ${MODIFIED_STARTUP}"
+eval ${MODIFIED_STARTUP}
0 commit comments