python/depanalysis: store analysis in a fixed folder
- ID
cd13b60- date
2026-05-26 22:09:44+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
0c2119c- message
python/depanalysis: store analysis in a fixed folder- changed files
1 file, 2 additions, 1 deletion
Changed files
python/depanalysis (273) → python/depanalysis (303)
diff --git a/python/depanalysis b/python/depanalysis
index 38cb44f..6044d02 100755
--- a/python/depanalysis
+++ b/python/depanalysis
@@ -3,7 +3,8 @@
set -o errexit
set -o nounset
-cd $(mktemp -d)
+mkdir -p /tmp/depanalysis
+cd /tmp/depanalysis
get_all_venv_deps > venv.txt
grep '==[0-9]' venv.txt | tr '==' ' ' | awk '{print $1}' | tally
echo "=="$(grep '==[0-9]' venv.txt | tr '==' ' ' | awk '{print $1}' | tally | wc -l)" UNIQUE =="