Skip to content

Commit

Permalink
Add script to detect old deps.edn dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Nov 28, 2018
1 parent 247736a commit afbf8e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/ancient.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
RESULT=$(clojure -A:ancient)
echo "$RESULT"

echo "$RESULT" | grep "All up to date" > /dev/null 2>&1
if [[ $? -ne 0 ]]; then
exit 1
fi

exit 0

0 comments on commit afbf8e1

Please sign in to comment.