Fix tools/ci-build

No spaces allowed in varialbe assignments.
master
Sébastien Hinderer 2017-04-28 10:58:15 +02:00
parent 255720556f
commit 1a30ec8cc0
1 changed files with 4 additions and 4 deletions

View File

@ -33,10 +33,10 @@ error () {
}
arch_error() {
configure_url = "https://ci.inria.fr/ocaml/computer/${NODE_NAME}/configure"
msg = "Unknown architecture. Make sure the OCAML_ARCH environemnt"
msg = "$msg variable has been defined."
msg = "$msg\nSee ${configure_url}"
configure_url="https://ci.inria.fr/ocaml/computer/${NODE_NAME}/configure"
msg="Unknown architecture. Make sure the OCAML_ARCH environemnt"
msg="$msg variable has been defined."
msg="$msg\nSee ${configure_url}"
error "$msg"
}