You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
327 B
11 lines
327 B
#!/bin/bash
|
|
|
|
spv_dir="/home/kevin/coding/spotify-lib-vis"
|
|
src_dir="$spv_dir"/src
|
|
|
|
python="$spv_dir"/bin/python
|
|
log_file="$src_dir"/api/management/commands/update-history.log
|
|
|
|
source "$src_dir"/scripts/api-keys.sh
|
|
"$python" "$src_dir"/manage.py update-history >> "$log_file" 2>&1
|
|
# "$python" "$src_dir"/manage.py update-history
|