From 22b1d1c1a4cfab3a43ac3dde1671382db7b2e500 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 7 Sep 2022 23:50:20 +0200 Subject: Moved away from job parameters to command arguments --- common/git-clone.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'common/git-clone.sh') diff --git a/common/git-clone.sh b/common/git-clone.sh index 1a1a89c..d502aca 100644 --- a/common/git-clone.sh +++ b/common/git-clone.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash set -euo pipefail -# Input environment: -# - NAME: a name for the script/tasks -# - URL: the url of the repository to clone +NAME=$1 +URL=$2 WORKDIR="/tmp/${NAME}" -- cgit v1.2.3