Skip to content

Commit dd5247d

Browse files
Jasonejerik-perri
andcommitted
update: pass through args to dss command when running up to allow for --force-recreate and --remove-orphans
Co-authored-by: Erik Perri <erik.perri@sourcetoad.com>
1 parent accf4b4 commit dd5247d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/hop

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function display_help {
111111
echo
112112
tag "$BG_Y$BOLD" "Docker Commands"
113113
describe_command "up" "Start the containers"
114-
describe_command "up" "-d" "Start the contains in the background"
114+
describe_command "up" "-d" "\$@" "Start the contains in the background"
115115
describe_command "stop" "Stop the containers"
116116
describe_command "down" "Stop and remove the containers"
117117
describe_command "restart" "Restart the containers"
@@ -402,7 +402,7 @@ case $1 in
402402
;;
403403
"up")
404404
shift 1
405-
run_dss_command up -d
405+
run_dss_command up -d "$@"
406406
run_command up "$@"
407407
;;
408408
"yarn")

0 commit comments

Comments
 (0)