9 lines
220 B
Bash
9 lines
220 B
Bash
|
#!/bin/bash
|
||
|
set -eo pipefail
|
||
|
DIR=$(dirname $0)
|
||
|
cd $DIR
|
||
|
[ "$NOPULL" != "0" ] && git pull
|
||
|
poetry lock
|
||
|
poetry -C $DIR/linuxinstaller install
|
||
|
poetry -C $DIR/linuxinstaller run python $DIR/linuxinstaller/linuxinstaller.py $*
|