Mercurial > code > home > repos > racc
view collector/run.sh @ 8:af6e0049e701
deploy for vite
author | drewp@bigasterisk.com |
---|---|
date | Mon, 13 Mar 2023 18:54:47 -0700 |
parents | 5ad799e534a5 |
children |
line wrap: on
line source
#!/bin/sh cd `dirname $0` if [ `uname` = Linux ]; then pdm run python racc.py restart elif [ `uname` = Darwin ]; then ${HOME}/Library/Python/3.10/bin/pdm run python racc.py restart else echo `uname` unknown exit 1 fi