Skip to content

Commit b56c79e

Browse files
committed
updates
1 parent 374cfa3 commit b56c79e

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
specs
22
monorepo
3+
featurevisor-go

Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,16 @@ setup-monorepo:
1111
.PHONY: update-monorepo
1212
update-monorepo:
1313
(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

Comments
 (0)