forked from coq/coq
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We remove the files which were already present when the job started.
- Loading branch information
1 parent
46fb258
commit 126ce83
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
before=$1 | ||
after=$2 | ||
|
||
# https://unix.stackexchange.com/questions/418429/find-intersection-of-lines-in-two-files | ||
awk 'BEGIN{while( (getline k < "'"$before"'")>0 ){a[k]}} $0 in a' "$after" | | ||
xargs rm | ||
|
||
for d in _build_ci stdlib/_build; do | ||
if [ -d $d ]; then | ||
find $d -type d -empty -delete | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
for d in _build_ci stdlib/_build; do | ||
if [ -d $d ]; then | ||
find $d -type f | sort | ||
fi | ||
done |