mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-04 05:10:41 +08:00

Added osx pronterface start script (Thanks bbum!) General update to the build script so it's easier to use.
18 lines
252 B
Bash
18 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
|
|
|