This repository has been archived on 2024-08-20 . You can view files and clone it, but cannot push or open issues or pull requests.
2024-02-01 15:07:55 -07:00
#!/bin/bash
SOURCE = ${ BASH_SOURCE [0] }
while [ -L " $SOURCE " ] ; do # resolve $SOURCE until the file is no longer a symlink
DIR = $( cd -P " $( dirname " $SOURCE " ) " >/dev/null 2>& 1 && pwd )
SOURCE = $( readlink " $SOURCE " )
[ [ $SOURCE != /* ] ] && SOURCE = $DIR /$SOURCE # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR = $( cd -P " $( dirname " $SOURCE " ) " >/dev/null 2>& 1 && pwd )
2024-02-02 23:31:20 -07:00
" $DIR " /venv/bin/python " $DIR " /run.py