Skip to content

Commit 02d92ba

Browse files
committed
windows build
1 parent 71de6e2 commit 02d92ba

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/xtracfg.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ jobs:
192192
retention-days: 1
193193

194194
publish_npm:
195-
if: ${{ github.ref_type == 'linux' }}
196195
runs-on: ubuntu-latest
197196
needs: build_libraries
198197
defaults:

libxtracfg/js/xtracfg-native-binding/test/test_binding.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ const xtracfgLib = require("../index.js");
22
const currentDir = __dirname;
33

44
function testBasic() {
5-
const command = `{"command": "info", "source": "${currentDir}", "verbose": "true", "debug": "true"}`;
5+
console.log("Testing basic execute...", currentDir);
6+
const command = `{"command": "info", "source": "${currentDir.replaceAll(
7+
"\\",
8+
"/"
9+
)}", "verbose": "true", "debug": "true"}`;
610

711
const result = xtracfgLib.execute(command);
812

0 commit comments

Comments
 (0)