Skip to content

Commit df75972

Browse files
fix script function calls
1 parent 8e4f2af commit df75972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ cp_bin() {
103103
local stopContainer=0;
104104

105105
if [ "$(docker container inspect -f '{{.State.Running}}' ${IMAGE_NAME} | true)" != "true" ]; then
106-
start_nginx
106+
start
107107
stopContainer=1
108108
fi
109109

@@ -117,7 +117,7 @@ cp_bin() {
117117

118118
if [ $stopContainer ]; then
119119
printf "${MAGENTA}Stopping NGINX container (${IMAGE_NAME})...${NC}\n"
120-
stop_nginx
120+
stop
121121
fi
122122
}
123123

0 commit comments

Comments
 (0)