summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wong2018-02-01 19:17:16 +0000
committerMark Wong2018-02-01 19:17:16 +0000
commit00242ae477359b8fde72e5c00ba25fa0316a1400 (patch)
tree332c88adf225c1635c1db749f12581505823c192
parentd4611000dbc8a44ec7b051d6d4dd47d2c37485c3 (diff)
Use https instead of git protocol
This is for ease of automated testing. Using git:// can require manual confirmation about updating the ssh known hosts file.
-rw-r--r--client/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/settings.py b/client/settings.py
index 8bee81a..338a70c 100644
--- a/client/settings.py
+++ b/client/settings.py
@@ -2,7 +2,7 @@ import os
import sys
# global configuration
-GIT_URL = '[email protected]:postgres/postgres.git'
+GIT_URL = 'https://github.com/postgres/postgres.git'
REPOSITORY_PATH = '/tmp/git-postgres'
BUILD_PATH = '/tmp/bin-postgres'
BIN_PATH = os.path.join(BUILD_PATH, 'bin')