8 lines
220 B
Bash
Executable file
8 lines
220 B
Bash
Executable file
#!/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 $*
|