Remove unused script cruft

This commit is contained in:
Erica Portnoy 2019-11-13 12:42:51 -08:00
parent 9338254511
commit 30dfcaf09d

View file

@ -1,15 +0,0 @@
#!/bin/sh
#
# Find all Python imports.
#
# ./tools/deps.sh certbot
# ./tools/deps.sh acme
# ./tools/deps.sh certbot-apache
# ...
#
# Manually compare the output with deps in setup.py.
git grep -h -E '^(import|from.*import)' $1/ | \
awk '{print $2}' | \
grep -vE "^$1" | \
sort -u