Skip to content

Commit 3557f60

Browse files
committed
Add script to check existence of files in the skip lists. Removed several bad entries from the skip list files.
1 parent 351f492 commit 3557f60

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

_scripts/checklists.sh

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
3+
full_path_script=$(realpath $0)
4+
full_path_script=$(dirname $full_path_script)
5+
for f in `ls $full_path_script/skip-*.txt`
6+
do
7+
echo $f
8+
dirs="`cat $f`"
9+
for p in $dirs
10+
do
11+
if [[ -f $p ]]
12+
then
13+
echo In $f, $p is a file. Remove.
14+
continue
15+
fi
16+
if [[ ! -d $p ]]
17+
then
18+
echo In $f, $p does not exist. Remove.
19+
continue
20+
fi
21+
done
22+
done

_scripts/skip-cpp.txt

-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ pl0
149149
plucid
150150
ply
151151
pmmn
152-
pom.xml
153152
postalcode
154153
powerbuilder
155154
powerbuilderdw

_scripts/skip-php.txt

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ haskell
2121
html
2222
icalendar
2323
informix
24-
ipc
2524
iri
2625
java/java
2726
java/java8

0 commit comments

Comments
 (0)