Skip to content

Commit a6c8f36

Browse files
committed
First occurence of distclean fixed
1 parent a583204 commit a6c8f36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,15 +290,15 @@ build_default() {
290290
# still be there.
291291
for bf in $before_files; do
292292
if [[ ! "${after_clean_files[*]}" =~ "${bf}" ]]; then
293-
run echo "Wrongly removed: $bf, existed in original tarball but was removed after `distclean`"
294-
refute_line "Wrongly removed: $bf, existed in original tarball but was removed after `distclean`"
293+
run echo "Wrongly removed: $bf, existed in original tarball but was removed after 'distclean'"
294+
refute_line "Wrongly removed: $bf, existed in original tarball but was removed after 'distclean'"
295295
fi
296296
done
297297
## Files which we now find should have been there in the beginning.
298298
#for af in $after_clean_files; do
299299
# if [[ ! "${before_files[*]}" =~ "${af}" ]]; then
300-
# run echo "Wrongly kept: $af, didn't exist in original tarball but was kept after `distclean`"
301-
# refute_line "Wrongly kept: $af, didn't exist in original tarball but was kept after `distclean`"
300+
# run echo "Wrongly kept: $af, didn't exist in original tarball but was kept after 'distclean'"
301+
# refute_line "Wrongly kept: $af, didn't exist in original tarball but was kept after 'distclean'"
302302
# fi
303303
#done
304304
}

0 commit comments

Comments
 (0)