Skip to content

Commit

Permalink
DA-337 version bump and windows build fix (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
lokesh-couchbase authored Nov 10, 2023
1 parent f3de487 commit 3d733d1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
- os: ubuntu-latest
platform: linux
arch: x64
- os: ubuntu-latest
platform: linux
arch: arm64
- os: ubuntu-latest
platform: linux
arch: armhf
# - os: ubuntu-latest
# platform: linux
# arch: arm64
# - os: ubuntu-latest
# platform: linux
# arch: armhf
- os: ubuntu-latest
platform: alpine
arch: x64
Expand All @@ -52,7 +52,7 @@ jobs:
- name: windows-specific
shell: pwsh
if: matrix.platform == 'win32'
run: choco install openssl.light --version=1.1.1 && choco install cmake && npm config set msvs_version 2022 --global && npm install --global cmake-js node-gyp && echo CMAKE_JS_LIB - $CMAKE_JS_LIB && npm ci && npm rebuild
run: choco install openssl.light --version=1.1.1 && choco install cmake && npm config set msvs_version 2022 --global && npm install --global cmake-js node-gyp && echo CMAKE_JS_LIB - $CMAKE_JS_LIB && npm ci && npm run rebuild
- name: general
if: matrix.platform != 'win32'
run: npm ci && npm run rebuild
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-couchbase",
"displayName": "Couchbase",
"description": "",
"version": "1.1.0",
"version": "1.1.1",
"engines": {
"vscode": "^1.63.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/tools/CBImport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class CBImport {
cmd.push(importData.generateKeyExpression);

cmd.push("--generator-delimiter"); // Using default generator delimiter of '#'
cmd.push("#");
cmd.push(`"#"`);

// Advanced Settings
if(importData.skipDocsOrRows && importData.skipDocsOrRows.trim() !== ""){
Expand Down

0 comments on commit 3d733d1

Please sign in to comment.