Skip to content

Commit 2a715fd

Browse files
authored
Fix serialize tinysnb dataset on windows (kuzudb#4124)
1 parent ab89ebd commit 2a715fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,7 @@ jobs:
949949
run: |
950950
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
951951
python3 scripts/generate-tinysnb.py
952+
if %errorlevel% neq 0 exit /b %errorlevel%
952953
cd scripts/ && start /b python http-server.py && cd ..
953954
make extension-test
954955

scripts/generate-tinysnb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if os.path.exists(f"{KUZU_ROOT}/dataset/databases/tinysnb"):
1212
shutil.rmtree(f"{KUZU_ROOT}/dataset/databases/tinysnb")
1313
if sys.platform == "win32":
14-
kuzu_shell_path = f"{KUZU_ROOT}/build/release/tools/shell/kuzu_shell"
14+
kuzu_shell_path = f"{KUZU_ROOT}/build/release/src/kuzu_shell"
1515
else:
1616
kuzu_shell_path = f"{KUZU_ROOT}/build/release/tools/shell/kuzu"
1717
subprocess.check_call(

0 commit comments

Comments
 (0)