Skip to content

Commit

Permalink
run cmd with python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbusch committed Jun 9, 2023
1 parent 861648c commit 1ec1152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-run/scripts/docker-run
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi

# generate docker run/exec command
CMD_FILE=$(mktemp)
python -m docker_run "${@}" 2>&1 >$CMD_FILE
python3 -m docker_run "${@}" 2>&1 >$CMD_FILE
CMD=$(cat $CMD_FILE)
rm $CMD_FILE

Expand Down

0 comments on commit 1ec1152

Please sign in to comment.