From d7a76e1120bc36025f660ca832f89f0fa079d636 Mon Sep 17 00:00:00 2001 From: Davide Depau Date: Sun, 19 Apr 2020 01:33:04 +0200 Subject: [PATCH] Change setting name from repo to git --- makepkg.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makepkg.sh b/makepkg.sh index 7c315d9..fbc9f86 100644 --- a/makepkg.sh +++ b/makepkg.sh @@ -27,9 +27,9 @@ if [ "$PLUGIN_AUR" != "" ]; then echo "Building AUR package $PLUGIN_AUR" git clone "$AUR_URL/$PLUGIN_AUR.git" package cd package -elif [ "$PLUGIN_REPO" != "" ]; then - echo "Building package from git repository: $PLUGIN_REPO" - git clone "$PLUGIN_REPO" package +elif [ "$PLUGIN_GIT" != "" ]; then + echo "Building package from git repository: $PLUGIN_GIT" + git clone "$PLUGIN_GIT" package cd package else echo "Building source repository"