From 872fe702dc6a8ec18cc42b91d9d5b8637c14a3c9 Mon Sep 17 00:00:00 2001 From: Dariusz Stempniak Date: Mon, 25 Mar 2024 15:08:50 +0100 Subject: [PATCH] fix path for drop schema --- ci/test_win.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test_win.bat b/ci/test_win.bat index f7d160baa7..fd38b63f0b 100644 --- a/ci/test_win.bat +++ b/ci/test_win.bat @@ -97,7 +97,7 @@ exit /b 0 :create_schema @echo off echo === creating schema - pushd scripts + pushd %scriptdir%..\scripts python create_schema.py if %ERRORLEVEL% NEQ 0 goto :error popd @@ -106,7 +106,7 @@ exit /b 0 :drop_schema @echo off echo === dropping schema - pushd scripts + pushd %scriptdir%..\scripts python drop_schema.py if %ERRORLEVEL% NEQ 0 goto :error popd