-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from cfcurtis/userunit
Adding support for different UserUnit
- Loading branch information
Showing
9 changed files
with
142 additions
and
69 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
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
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,7 +1,13 @@ | ||
# env /bin/bash | ||
echo "Running gs on all pdfs in tests folder" | ||
for pdf in *.pdf; do | ||
pdfs=`ls *.pdf` | ||
if [[ $# -eq 0 ]] ; then | ||
echo "Running gs on all pdfs in tests folder" | ||
else | ||
pdfs="$@" | ||
fi | ||
|
||
for pdf in $pdfs; do | ||
echo "Checking $pdf..." | ||
gs -dNOPAUSE -dBATCH -sDEVICE=nullpage "$pdf" | grep -i 'warn\|err' | ||
done | ||
echo "Done" | ||
echo "Done" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.