--- build.py.orig	2017-09-13 16:59:12.000000000 +0200
+++ build.py	2017-09-13 17:01:51.000000000 +0200
@@ -162,13 +162,6 @@
     if local_changes() and no_uncommitted:
         logging.error("There are uncommitted changes in the current directory.")
         return False
-    if not check_path_for("gdm"):
-        logging.info("Downloading `gdm`...")
-        get_command = "go get github.com/sparrc/gdm"
-        run(get_command)
-    logging.info("Retrieving dependencies with `gdm`...")
-    sys.stdout.flush()
-    run("{}/bin/gdm restore -v".format(os.environ.get("GOPATH")))
     return True
 
 def run_tests(race, parallel, timeout, no_vet, junit=False):
@@ -290,7 +283,7 @@
 def get_current_version_tag():
     """Retrieve the raw git version tag.
     """
-    version = run("git describe --always --tags --abbrev=0")
+    version = "v1.3.5"
     return version
 
 def get_current_version():
@@ -310,27 +303,18 @@
 def get_current_commit(short=False):
     """Retrieve the current git commit.
     """
-    command = None
-    if short:
-        command = "git log --pretty=format:'%h' -n 1"
-    else:
-        command = "git rev-parse HEAD"
-    out = run(command)
+    out = "xxx"
     return out.strip('\'\n\r ')
 
 def get_current_branch():
     """Retrieve the current git branch.
     """
-    command = "git rev-parse --abbrev-ref HEAD"
-    out = run(command)
+    out = "master"
     return out.strip()
 
 def local_changes():
     """Return True if there are local un-committed changes.
     """
-    output = run("git diff-files --ignore-submodules --").strip()
-    if len(output) > 0:
-        return True
     return False
 
 def get_system_arch():
