From 0d18802c876db61db83e7ed23c4b0fff5e5b46f2 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 25 Jan 2017 09:34:22 +0100 Subject: [PATCH] Remove unused function --- gitlab/functions.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/gitlab/functions.sh b/gitlab/functions.sh index 2eb0cf0..746f8e0 100644 --- a/gitlab/functions.sh +++ b/gitlab/functions.sh @@ -203,18 +203,6 @@ prepare_build_env() { } -# Appends a value to a variable if that is not already set -# $1: variable name to append the value -# $2: the value to be appended -append_if_not_set() { - if [ -z "${1+abc}" ]; then - eval $1="$2" - elif [[ "${!1}" != "*${2}*" ]]; then - eval $1="${!1} $2" - fi -} - - # Checks if an array contains a value # taken from here: https://stackoverflow.com/questions/3685970/check-if-an-array-contains-a-value # Parameters: <value-to-check> <array-variable> -- GitLab