From d5125e07e63d5c936832df25fe3b6a6b4537e79e Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Thu, 18 Oct 2018 20:39:32 +0200 Subject: [PATCH] examples/semaphore.sh: fix style `shfmt -i 2 -w examples/semaphore.sh` --- examples/semaphore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/semaphore.sh b/examples/semaphore.sh index 76998c2..98e1e03 100755 --- a/examples/semaphore.sh +++ b/examples/semaphore.sh @@ -15,8 +15,8 @@ readonly dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" # Download rkt if not available yet as Semaphore CI # doesn't have rkt at the time of writing -if [[ ! -f "./rkt/rkt" ]] \ - || [[ ! "$(./rkt/rkt version | awk '/rkt Version/{print $3}')" == "${rkt_version}" ]]; then +if [[ ! -f "./rkt/rkt" ]] || + [[ ! "$(./rkt/rkt version | awk '/rkt Version/{print $3}')" == "${rkt_version}" ]]; then curl -LsS "https://github.com/coreos/rkt/releases/download/v${rkt_version}/rkt-v${rkt_version}.tar.gz" \ -o rkt.tgz