summaryrefslogtreecommitdiff
path: root/scripts/populate.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/populate.sh')
-rw-r--r--scripts/populate.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/populate.sh b/scripts/populate.sh
deleted file mode 100644
index 0f1ac0c..0000000
--- a/scripts/populate.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-echo activate virtual environment? \(source ~/.venv/bin/activate\) [y/n]
-read answer
-
-if [[ $answer == 'y' ]] then
- source ~/.config/venv/bin/activate
-fi
-
-mkdir -p lyrics_cache
-cd lyrics_cache
-
-python3 ../scripts/populate/main.py
-
-cd ..
-mv lyrics_cache/covers ./
-rm -rf lyrics_cache
-
-if [[ $answer == 'y' ]] then
- deactivate
-fi
-