Skip to content

Commit 1be5bb7

Browse files
committed
fix(client-test): use https urls for checkout
1 parent fd25220 commit 1be5bb7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cmd/statshouse-client-test/client_cpp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func (*cpp) testMain() string {
1313
}
1414

1515
func (*cpp) gitURL() string {
16-
return "git@github.com:VKCOM/statshouse-cpp.git"
16+
return "https://github.com/VKCOM/statshouse-cpp.git"
1717
}
1818

1919
func (client *cpp) make() error {

cmd/statshouse-client-test/client_golang.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func (*golang) libMain() string {
99
}
1010

1111
func (*golang) gitURL() string {
12-
return "git@github.com:VKCOM/statshouse-go.git"
12+
return "https://github.com/VKCOM/statshouse-go.git"
1313
}
1414

1515
func (*golang) testMain() string {

cmd/statshouse-client-test/client_java.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func (*java) libMain() string {
1111
}
1212

1313
func (*java) gitURL() string {
14-
return "git@github.com:VKCOM/statshouse-java.git"
14+
return "https://github.com/VKCOM/statshouse-java.git"
1515
}
1616

1717
func (*java) testMain() string {

cmd/statshouse-client-test/client_php.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ func (*php) libMain() string {
99
}
1010

1111
func (*php) gitURL() string {
12-
return "git@github.com:VKCOM/statshouse-php.git"
12+
return "https://github.com/VKCOM/statshouse-php.git"
1313
}
1414

1515
func (*php) testMain() string {

cmd/statshouse-client-test/client_python.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func (*python) libMain() string {
1414
}
1515

1616
func (*python) gitURL() string {
17-
return "git@github.com:VKCOM/statshouse-py.git"
17+
return "https://github.com/VKCOM/statshouse-py.git"
1818
}
1919

2020
func (*python) testMain() string {

cmd/statshouse-client-test/client_rust.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func (*rust) testMain() string {
1717
}
1818

1919
func (*rust) gitURL() string {
20-
return "git@github.com:VKCOM/statshouse-rs.git"
20+
return "https://github.com/VKCOM/statshouse-rs.git"
2121
}
2222

2323
func (client *rust) make() error {

0 commit comments

Comments
 (0)