wine-run.sh 257 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #!/bin/bash make DESTDIR=${PWD}/.build install if [ "$?" != "0" ]; then exit -1 fi bash ./win/makeruntime.sh if [ "$?" != "0" ]; then exit -1 fi wine .build/usr/x86_64-w64-mingw32/sys-root/mingw/bin/pw3270.exe if [ "$?" != "0" ]; then exit -1 fi