-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2167cf
commit dc7aaf9
Showing
4 changed files
with
8 additions
and
8 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/bash | ||
tmpList=$(mktemp) | ||
python3 tools/addChecksum.py EasyListHebrew.txt $tmpList | ||
python3 tools/validateChecksum.py $tmpList | ||
python3 .github/scripts/addChecksum.py EasyListHebrew.txt $tmpList | ||
python3 .github/scripts/validateChecksum.py $tmpList | ||
if [ $? == 0 ] ; then | ||
mv -f $tmpList EasyListHebrew.txt | ||
else | ||
echo 'something went wrong' | ||
fi | ||
python3 tools/genhosts.py EasyListHebrew.txt | ||
python3 .github/scripts/genhosts.py EasyListHebrew.txt |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
@echo off | ||
python tools\generalFinder.py > general.txt | ||
python .github\scripts\generalFinder.py > general.txt |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/bash | ||
python3 tools/generalFinder.py general.txt | ||
python3 .github/scripts/generalFinder.py general.txt |