You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
die "the command path in docker to copy must be absolute path: $docker_command_cp_path"
148
+
if [ -n"${docker_workdir}" ];then
149
+
isAbsolutePath "$docker_workdir"||
150
+
die "docker workdir(-w/--workdir) must be absolute path: $docker_workdir"
151
+
elif [ -n"${docker_command_cp_path}" ];then
152
+
isAbsolutePath "$docker_command_cp_path"||
153
+
die "when no docker workdir(-w/--workdir) is specified, the command path in docker to copy(-p/--cp-path) must be absolute path: $docker_command_cp_path"
0 commit comments