ef583813eb
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
25 lines
594 B
Bash
Executable File
25 lines
594 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
RUN_JENKINS_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
host_uname="$(uname)"
|
|
case "$host_uname" in
|
|
CYGWIN*)
|
|
$RUN_JENKINS_SCRIPT_DIR/run-jenkins-windows.sh
|
|
;;
|
|
Linux)
|
|
host_uname="$(uname -a)"
|
|
case "$host_uname" in
|
|
*Microsoft*)
|
|
$RUN_JENKINS_SCRIPT_DIR/run-jenkins-windows.sh
|
|
;;
|
|
*)
|
|
$RUN_JENKINS_SCRIPT_DIR/run-jenkins-linux.sh
|
|
;;
|
|
esac
|
|
;;
|
|
Darwin)
|
|
$RUN_JENKINS_SCRIPT_DIR/run-jenkins-osx.sh
|
|
;;
|
|
esac
|