From 99fefff7b7e43eee132ce4f411cccf37e0897bb1 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 10 Jan 2019 09:14:21 +0100
Subject: [PATCH] [ci] Fixes to the scripts

---
 .gitlab-ci.yml           | 8 ++++----
 {_ci => ci}/bootstrap.sh | 2 +-
 {_ci => ci}/build.sh     | 0
 {_ci => ci}/deploy.sh    | 0
 {_ci => ci}/nextbuild.py | 0
 5 files changed, 5 insertions(+), 5 deletions(-)
 rename {_ci => ci}/bootstrap.sh (99%)
 rename {_ci => ci}/build.sh (100%)
 rename {_ci => ci}/deploy.sh (100%)
 rename {_ci => ci}/nextbuild.py (100%)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3d0024d..a13f18d0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,9 +13,9 @@ stages:
 .build_template: &build_job
   stage: build
   before_script:
-    - ./_ci/bootstrap.sh
+    - ./ci/bootstrap.sh
   script:
-    - ./_ci/build.sh
+    - ./ci/build.sh
   cache: &build_caches
     paths:
       - miniconda.sh
@@ -73,9 +73,9 @@ build_macosx_36:
 .deploy_template: &deploy_job
   stage: deploy
   before_script:
-    - ./_ci/bootstrap.sh self
+    - ./ci/bootstrap.sh self
   script:
-    - ./_ci/deploy.sh
+    - ./ci/deploy.sh
   dependencies:
     - build_linux_36
     - build_macosx_36
diff --git a/_ci/bootstrap.sh b/ci/bootstrap.sh
similarity index 99%
rename from _ci/bootstrap.sh
rename to ci/bootstrap.sh
index 86e1b8d5..c72e08b9 100755
--- a/_ci/bootstrap.sh
+++ b/ci/bootstrap.sh
@@ -1,4 +1,4 @@
-#!/urs/bin/env bash
+#!/usr/bin/env bash
 
 # Bootstraps a new conda installation and prepares base environment
 # if "self" is passed as parameter, then self installs an already built
diff --git a/_ci/build.sh b/ci/build.sh
similarity index 100%
rename from _ci/build.sh
rename to ci/build.sh
diff --git a/_ci/deploy.sh b/ci/deploy.sh
similarity index 100%
rename from _ci/deploy.sh
rename to ci/deploy.sh
diff --git a/_ci/nextbuild.py b/ci/nextbuild.py
similarity index 100%
rename from _ci/nextbuild.py
rename to ci/nextbuild.py
-- 
GitLab