We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 374cfa3 commit b56c79eCopy full SHA for b56c79e
.gitignore
@@ -1,2 +1,3 @@
1
specs
2
monorepo
3
+featurevisor-go
Makefile
@@ -11,3 +11,16 @@ setup-monorepo:
11
.PHONY: update-monorepo
12
update-monorepo:
13
(cd monorepo && git pull origin main)
14
+
15
+.PHONY: setup-golang-sdk
16
+setup-golang-sdk:
17
+ mkdir -p featurevisor-go
18
+ if [ ! -d "featurevisor-go/.git" ]; then \
19
+ git clone git@github.com:featurevisor/featurevisor-go.git featurevisor-go; \
20
+ else \
21
+ (cd featurevisor-go && git fetch origin main && git checkout main && git pull origin main); \
22
+ fi
23
24
+.PHONY: update-golang-sdk
25
+update-golang-sdk:
26
+ (cd featurevisor-go && git pull origin main)
0 commit comments