Skip to content

Commit d56cf7a

Browse files
committed
Fix pipeline
1 parent f8dbd44 commit d56cf7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/chdb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v4
1919
with:
20-
go-version: 1.20
20+
go-version: "1.20"
2121
- name: Build
2222
run: |
2323
go mod tidy

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v4
1818
with:
19-
go-version: 1.20
19+
go-version: "1.20"
2020
- name: Build
2121
run: |
2222
go mod tidy

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install: update_libchdb
1212
sudo cp -a libchdb.so /usr/local/lib
1313
# if on Linux run `sudo ldconfig` to update the cache
1414
# if on macOS run `sudo update_dyld_shared_cache` to update the cache
15-
if [[ "$$OSTYPE" == "linux-gnu" ]]; then sudo ldconfig; fi
15+
if [ "$$OSTYPE" == "linux-gnu" ]; then sudo ldconfig; fi
1616

1717
test:
1818
CGO_ENABLED=1 go test -v -coverprofile=coverage.out ./...

0 commit comments

Comments
 (0)