File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2929# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
3030# variable format of "${VARIABLE}" before evaluating the string and automatically
3131# replacing the values.
32- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
32+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
3333
3434# Display the command we're running in the output, and then execute it with the env
3535# from the container itself.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ erl -noshell -eval 'erlang:display(erlang:system_info(system_version))' -eval 'i
1616# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
1717# variable format of "${VARIABLE}" before evaluating the string and automatically
1818# replacing the values.
19- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
19+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
2020
2121# Display the command we're running in the output, and then execute it with the env
2222# from the container itself.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ go version
4040# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
4141# variable format of "${VARIABLE}" before evaluating the string and automatically
4242# replacing the values.
43- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
43+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
4444
4545# Display the command we're running in the output, and then execute it with the env
4646# from the container itself.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ java -version
4040# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
4141# variable format of "${VARIABLE}" before evaluating the string and automatically
4242# replacing the values.
43- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
43+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
4444
4545# Display the command we're running in the output, and then execute it with the env
4646# from the container itself.
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ cd /home/container || exit 1
3434# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
3535# variable format of "${VARIABLE}" before evaluating the string and automatically
3636# replacing the values.
37- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
37+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
3838
3939# Display the command we're running in the output, and then execute it with the env
4040# from the container itself.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ echo "installed youtube-dl Version:"
1515# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
1616# variable format of "${VARIABLE}" before evaluating the string and automatically
1717# replacing the values.
18- PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' | eval echo " $( cat - ) " )
18+ PARSED=$( echo -e ${STARTUP} | sed -e ' s/{{/${/g' -e ' s/}}/}/g' )
1919
2020# Display the command we're running in the output, and then execute it with the env
2121# from the container itself.
You can’t perform that action at this time.
0 commit comments