fix universal CI build script for Unix

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@16360 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2015-08-18 13:27:38 +00:00
parent 6437506bfe
commit 2b809f3d7d
1 changed files with 7 additions and 2 deletions

View File

@ -81,8 +81,12 @@ case "$arch" in
bsd) bsd)
make=gmake make=gmake
;; ;;
macos) ;; macos)
linux) ;; workdir=.
;;
linux)
workdir=.
;;
cygwin) cygwin)
workdir="$HOME/jenkins-workspace/$branch" workdir="$HOME/jenkins-workspace/$branch"
docheckout=true docheckout=true
@ -117,6 +121,7 @@ esac
######################################################################### #########################################################################
# Go to the right directory # Go to the right directory
pwd
cd "$workdir" cd "$workdir"
######################################################################### #########################################################################