f850ec6a46
-fixed all loop structors used throughout the app. they were running too fast. -added more log lines to aid with debug.
15 lines
406 B
Bash
15 lines
406 B
Bash
#!/bin/sh
|
|
apt install apache2
|
|
if [ ! -d "/opt/mow" ]; then
|
|
mkdir /opt/mow
|
|
fi
|
|
cp ./.build-mow/mow /opt/mow/bin
|
|
printf "#!/bin/sh\n" > /opt/mow/run
|
|
printf "export OPENCV_LOG_LEVEL=DEBUG\n" >> /opt/mow/run
|
|
printf "export OPENCV_VIDEOIO_DEBUG=1\n" >> /opt/mow/run
|
|
printf "/opt/mow/bin \$1 \$2 \$3\n" >> /opt/mow/run
|
|
chmod +x /opt/mow/run
|
|
chmod +x /opt/mow/bin
|
|
rm /usr/bin/mow
|
|
ln -s /opt/mow/run /usr/bin/mow
|