OctoPrint/scripts/linux/pronterface.sh
daid 559f855ef0 Updated build script so it works for osx. (Thanks bbum!)
Added osx pronterface start script (Thanks bbum!)
General update to the build script so it's easier to use.
2012-02-13 11:33:38 +01:00

17 lines
252 B
Bash

#!/bin/bash
python -c 'import wx'
if [ $? != 0 ]; then
echo "Requires wx python."
exit 1
fi
python -c 'import serial'
if [ $? != 0 ]; then
echo "Requires pyserial."
exit 1
fi
SCRIPT_DIR=`dirname $0`
python ${SCRIPT_DIR}/Printrun/pronterface.py