15 lines
No EOL
239 B
Bash
Executable file
15 lines
No EOL
239 B
Bash
Executable file
#!/bin/bash
|
|
# cd to script dir
|
|
SCRIPT_RELATIVE_DIR=$(dirname "${BASH_SOURCE[0]}")
|
|
cd $SCRIPT_RELATIVE_DIR
|
|
|
|
# enable python venv
|
|
source ./venv/bin/activate
|
|
|
|
echo `which python`
|
|
|
|
# noot
|
|
python ./manage_waitlist.py
|
|
|
|
# disable venv
|
|
deactivate |