diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2025-01-26 12:55:13 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2025-01-26 12:55:13 +0100 |
commit | 5891af7e8c1411029fe1ad9c6d3182f88bcf3dfd (patch) | |
tree | fde6a420e55faaf9c696298b5aedb849c1b39189 /scripts | |
parent | 5898e5ab4359945ef52dc7460bb2937a85603fc2 (diff) |
comment and update information
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/populate.sh | 21 |
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 - |