File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -103,20 +103,20 @@ prepare() {
103103 libtinfo* )
104104 # Move libtinfo libraries to a custom path to ensure it is not
105105 # unintentionally used in downstream images.
106- find ./usr/lib/${arch} -linux-gnu -type f |
106+ find ./usr/lib/" ${arch} " -linux-gnu -type f |
107107 {
108- while read binary; do
108+ while read -r binary; do
109109 add_rpath " ${binary} " " /lib/${arch} -linux-gnu/terminfo"
110110 done
111111 }
112112
113- mv ./lib/${arch} -linux-gnu ./temp
114- mkdir ./lib/${arch} -linux-gnu
115- mv ./temp ./lib/${arch} -linux-gnu/terminfo
113+ mv ./lib/" ${arch} " -linux-gnu ./temp
114+ mkdir ./lib/" ${arch} " -linux-gnu
115+ mv ./temp ./lib/" ${arch} " -linux-gnu/terminfo
116116
117- mv ./usr/lib/${arch} -linux-gnu ./temp
118- mkdir ./usr/lib/${arch} -linux-gnu
119- mv ./temp ./usr/lib/${arch} -linux-gnu/terminfo
117+ mv ./usr/lib/" ${arch} " -linux-gnu ./temp
118+ mkdir ./usr/lib/" ${arch} " -linux-gnu
119+ mv ./temp ./usr/lib/" ${arch} " -linux-gnu/terminfo
120120 ;;
121121 base-passwd)
122122 # The dependencies libdebconfclient0 (and libselinux1 for Debian>=12)
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ miniconda_boostrap_prefix="$(pwd)/miniconda"
1010
1111 # Use the base image-provided tools if they work for us:
1212 tools=' '
13- find -print0 -maxdepth 0 && xargs -0 true < /dev/null ||
13+ find . -maxdepth 0 -print0 && xargs -0 true < /dev/null ||
1414 tools=" ${tools} findutils"
1515 sed -e ' ' < /dev/null ||
1616 tools=" ${tools} sed"
You can’t perform that action at this time.
0 commit comments