From bb9ac21d65d1490f14b259e7f5cedce26d4a6108 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Mon, 11 Oct 2021 16:47:59 +0200 Subject: [PATCH] L2SS-409: Mea culpa. The check is correct. Ditching the use of env then. --- .gitlab-ci.yml | 2 +- sbin/tag_and_push_docker_image.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a150dca3e..350b264d8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,7 +37,7 @@ shellcheck: - sudo apt-get update - sudo apt-get install -y shellcheck script: - - shellcheck -e SC2096 **/*.sh + - shellcheck **/*.sh unit_test: stage: unit-tests before_script: diff --git a/sbin/tag_and_push_docker_image.sh b/sbin/tag_and_push_docker_image.sh index 28621bb42..799ab1cd7 100755 --- a/sbin/tag_and_push_docker_image.sh +++ b/sbin/tag_and_push_docker_image.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash -e +#!/bin/bash -e # Tag and push which image version? DOCKER_TAG=latest -- GitLab