File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/jobs/configure-checks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if [ -z ${test_path+x} ]; then
23
23
# Used in the CI
24
24
fi
25
25
26
- before_files=$( find . -type f -print )
26
+ before_files=$( find . -type f)
27
27
28
28
# Helper functions
29
29
translate () {
@@ -275,7 +275,7 @@ build_default() {
275
275
else
276
276
assert_success
277
277
fi
278
- after_files=$( find . -type f -print )
278
+ after_files=$( find . -type f)
279
279
# Find the new files not in the tarball
280
280
# echo "# Working with: $after_files" >&3
281
281
filtered_files=()
@@ -287,7 +287,7 @@ build_default() {
287
287
done
288
288
run make distclean
289
289
assert_success
290
- after_clean_files=$( find . -type f -print )
290
+ after_clean_files=$( find . -type f)
291
291
# Files which were there to begin with should
292
292
# still be there.
293
293
for bf in $before_files ; do
You can’t perform that action at this time.
0 commit comments