From 896ddf56295f38cdad8bd4b43b64be70ec44bad4 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 3 Feb 2020 11:29:05 -0500 Subject: [PATCH] prehook: fix enterprise repo remote value --- dev/hooks/pre-push | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/hooks/pre-push b/dev/hooks/pre-push index e1afca2e8..d7dff70e8 100755 --- a/dev/hooks/pre-push +++ b/dev/hooks/pre-push @@ -7,8 +7,8 @@ fail () { # only push to oss when the enterprise version is absent # ==================== -oss="git@github.com:/hashicorp/nomad" -ent="git@github.com:/hashicorp/nomad-enterprise" +oss="git@github.com:hashicorp/nomad.git" +ent="git@github.com:hashicorp/nomad-enterprise.git" if [ "$2" != "$ent" -a -f version/version_ent.go ]; then fail "found enterprise version file version/version_ent.go while pushing to oss remote" fi