Skip to content

Commit 38fbc59

Browse files
authored
wrapper: fix guest_cmd command (#682)
1 parent 3f9c94f commit 38fbc59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

penguin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ penguin_run() {
327327
if [[ ${#cmd[@]} -gt 1 && ( "${cmd[0]}" == "guest_cmd" ) ]]; then
328328

329329
# Kludgy, but lets us reuse the $container_name mechanism above
330-
docker_cmd=("docker" "exec" "-it" "${container_name}" "python3" "/igloo_static/guesthopper/guest_cmd.py" "${cmd[@]:2}")
330+
docker_cmd=("docker" "exec" "-it" "${container_name}" "python3" "/igloo_static/guesthopper/guest_cmd.py" "${cmd[@]:1}")
331331
"${docker_cmd[@]}"
332332
exit $?
333333
fi

0 commit comments

Comments
 (0)