Skip to content

Commit fadfae4

Browse files
author
MarcoFalke
committed
ci: Remove unused busybox workaround
The find workaround is no longer needed after commit d3d547c
1 parent fac424f commit fadfae4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/test/04_install.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,9 @@ fi
159159
if [ "$USE_BUSY_BOX" = "true" ]; then
160160
echo "Setup to use BusyBox utils"
161161
# tar excluded for now because it requires passing in the exact archive type in ./depends (fixed in later BusyBox version)
162-
# find excluded for now because it does not recognize the -delete option in ./depends (fixed in later BusyBox version)
163162
# ar excluded for now because it does not recognize the -q option in ./depends (unknown if fixed)
164163
# shellcheck disable=SC1010
165-
CI_EXEC for util in \$\(busybox --list \| grep -v "^ar$" \| grep -v "^tar$" \| grep -v "^find$"\)\; do ln -s \$\(command -v busybox\) "${BINS_SCRATCH_DIR}/\$util"\; done
164+
CI_EXEC for util in \$\(busybox --list \| grep -v "^ar$" \| grep -v "^tar$" \)\; do ln -s \$\(command -v busybox\) "${BINS_SCRATCH_DIR}/\$util"\; done
166165
# Print BusyBox version
167166
CI_EXEC patch --help
168167
fi

0 commit comments

Comments
 (0)