File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -100,19 +100,19 @@ else
100100fi
101101
102102docker_command+=" \" IMAGE_NAME=$image_name \" -e \
103- \" ARTIFACTS=$( allOSRealPath $artifact_dir ) \" "
103+ \" ARTIFACTS=$( allOSRealPath " $artifact_dir " ) \" "
104104
105105if [ -z " $source_dirs " ]
106106then
107- docker_command+=" -e \" SOURCE=$( allOSRealPath $PWD ) \" "
107+ docker_command+=" -e \" SOURCE=$( allOSRealPath " $PWD " ) \" "
108108else
109109 for index in " ${! source_dirs[@]} " ; do
110110 if [ $index -eq 0 ]
111111 then
112- docker_command+=" -e \" SOURCE=$( allOSRealPath ${source_dirs[$index]} ) \" "
112+ docker_command+=" -e \" SOURCE=$( allOSRealPath " ${source_dirs[$index]} " ) \" "
113113 else
114114 identifier=${source_dirs[$index]%%:* }
115- src_dir=$( allOSRealPath ${source_dirs[$index]#*: } )
115+ src_dir=$( allOSRealPath " ${source_dirs[$index]#*: } " )
116116
117117 docker_command+=" -e \" SECONDARY_SOURCE_$index =$identifier :$src_dir \" "
118118 fi
121121
122122if [ -n " $buildspec " ]
123123then
124- docker_command+=" -e \" BUILDSPEC=$( allOSRealPath $buildspec ) \" "
124+ docker_command+=" -e \" BUILDSPEC=$( allOSRealPath " $buildspec " ) \" "
125125fi
126126
127127if [ -n " $environment_variable_file " ]
@@ -182,4 +182,4 @@ echo ""
182182echo $exposed_command
183183echo " "
184184
185- eval $docker_command
185+ eval $docker_command
You can’t perform that action at this time.
0 commit comments