From 42ebd1f5d0eb655a84d5f14e74f5e1b939e8045d Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Thu, 27 Aug 2015 16:23:37 -0600 Subject: [PATCH] ice-setup/takora: fix shebang with the shebang line fixed, Jenkins is really using bash to execute this. And in takora, this means we can go back to single brackets for a conditional. --- ice-setup/build/build | 2 +- takora/build/build | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ice-setup/build/build b/ice-setup/build/build index d1e6628f..ac8f4e1f 100644 --- a/ice-setup/build/build +++ b/ice-setup/build/build @@ -1,4 +1,4 @@ -#/bin/bash -ex +#!/bin/bash -ex echo "BRANCH: $BRANCH" cd $WORKSPACE/ice-setup diff --git a/takora/build/build b/takora/build/build index 9ff26380..7b00837d 100644 --- a/takora/build/build +++ b/takora/build/build @@ -1,4 +1,4 @@ -#/bin/bash -ex +#!/bin/bash -ex echo "BRANCH: $BRANCH" cd $WORKSPACE/takora @@ -7,7 +7,7 @@ cd $WORKSPACE/takora DEBIAN=0 -if [[ "$ID" -eq 'Ubuntu' ]] ; then +if [ "$ID" -eq 'Ubuntu' ] ; then DEBIAN=1 fi -- 2.39.5