rename build to compile cus it breaks shit otherwise.

This commit is contained in:
2025-09-11 22:14:46 -07:00
parent 7b35ecb508
commit f98793736f

8
compile Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
NAME="robovac-build"
docker buildx build . -t $NAME
docker run -v $PWD:/opt/build --rm -w "/opt/build" $NAME bash -c "pipenv install;pipenv run pyinstaller -F src/vac.py"