This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #This is used to test PRs | |
| set -e | |
| cd ~/Desktop/Stuff/cockatrice | |
| debug=0 | |
| server=0 | |
| openOracle=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #This is used to test PRs -- Save them to desktop | |
| set -e | |
| cd ~/Desktop/Stuff/cockatrice | |
| debug=0 | |
| while getopts ":u::d" opt; do | |
| case $opt in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if defined(Q_OS_MAC) | |
| QStringList scriptArgs; | |
| scriptArgs << QLatin1String("-e"); | |
| scriptArgs << QString::fromLatin1("tell application \"Finder\" to open POSIX file \"%1\"").arg(settingsCache->getPicsPath() + "/CUSTOM/"); | |
| scriptArgs << QLatin1String("-e"); | |
| scriptArgs << QLatin1String("tell application \"Finder\" to activate"); | |
| QProcess::execute("/usr/bin/osascript", scriptArgs); |
NewerOlder