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"