Skip to content

Instantly share code, notes, and snippets.

@orgads
Created September 3, 2015 14:12
Show Gist options
  • Save orgads/04ba4abfbeb0d5a6a500 to your computer and use it in GitHub Desktop.
Save orgads/04ba4abfbeb0d5a6a500 to your computer and use it in GitHub Desktop.
function shell(command, args) {
var binary, realArgs;
if (qbs.targetOS.contains("windows")) {
binary = "Utils/ListEvents/sh-exec.bat"
realArgs = [command]
realArgs.push(args)
} else {
binary = command
realArgs = args
}
return new Command(binary, realArgs);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment