summaryrefslogtreecommitdiff
path: root/scripts/populate.sh
diff options
context:
space:
mode:
authorniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-26 12:55:13 +0100
committerniliara-edu <nil.jimeno@estudiant.fjaverianas.com>2025-01-26 12:55:13 +0100
commit5891af7e8c1411029fe1ad9c6d3182f88bcf3dfd (patch)
treefde6a420e55faaf9c696298b5aedb849c1b39189 /scripts/populate.sh
parent5898e5ab4359945ef52dc7460bb2937a85603fc2 (diff)
comment and update information
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
-