Przeglądaj źródła

terra: fix terra test (#1231)

* terra: fix terra test

* Update terra git bits

Co-authored-by: Jeff Schroeder <jeffschroeder@computer.org>
Evan Gray 3 lat temu
rodzic
commit
38d8918d28
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      terra/Makefile

+ 6 - 1
terra/Makefile

@@ -54,7 +54,12 @@ tools/node_modules: tools/package-lock.json
 	cd tools && npm ci
 	cd tools && npm ci
 
 
 LocalTerra:
 LocalTerra:
-	git clone --depth 1 https://www.github.com/terra-money/LocalTerra
+	mkdir LocalTerra && \
+	cd LocalTerra && \
+	git init && \
+	git remote add origin  https://www.github.com/terra-money/LocalTerra.git && \
+	git fetch --depth 1 origin 958ff795f261f5ff2efc7b56604e2434eb76f7c4 && \
+	git checkout FETCH_HEAD
 
 
 test/node_modules: test/package-lock.json
 test/node_modules: test/package-lock.json
 	cd test && npm ci
 	cd test && npm ci