Skip to content

Commit cef266c

Browse files
committed
Revert "The first file is lost in the lookup"
This reverts commit de9f382.
1 parent 2e560cc commit cef266c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/jobs/configure-checks/distclean.bats

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [ -z ${test_path+x} ]; then
2323
# Used in the CI
2424
fi
2525

26-
before_files=$(find . -type f -print)
26+
before_files=$(find . -type f)
2727

2828
# Helper functions
2929
translate () {
@@ -275,7 +275,7 @@ build_default() {
275275
else
276276
assert_success
277277
fi
278-
after_files=$(find . -type f -print)
278+
after_files=$(find . -type f)
279279
# Find the new files not in the tarball
280280
#echo "# Working with: $after_files" >&3
281281
filtered_files=()
@@ -287,7 +287,7 @@ build_default() {
287287
done
288288
run make distclean
289289
assert_success
290-
after_clean_files=$(find . -type f -print)
290+
after_clean_files=$(find . -type f)
291291
# Files which were there to begin with should
292292
# still be there.
293293
for bf in $before_files; do

0 commit comments

Comments
 (0)