From abfbdb55b08a06aa58fee5268ffa7e2bebb03762 Mon Sep 17 00:00:00 2001 From: vadym Date: Sun, 12 Sep 2021 17:06:28 +0300 Subject: [PATCH] msi build fixes --- contrib/msi/build-msi.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/msi/build-msi.sh b/contrib/msi/build-msi.sh index 4c39383d..8b42f549 100755 --- a/contrib/msi/build-msi.sh +++ b/contrib/msi/build-msi.sh @@ -55,12 +55,12 @@ fi # Create the postinstall script cat > updateconfig.bat << EOF -if not exist %ALLUSERSPROFILE%\\Mesh ( - mkdir %ALLUSERSPROFILE%\\Mesh +if not exist %ALLUSERSPROFILE%\\RiV-mesh ( + mkdir %ALLUSERSPROFILE%\\RiV-mesh ) -if not exist %ALLUSERSPROFILE%\\Mesh\\mesh.conf ( +if not exist %ALLUSERSPROFILE%\\RiV-mesh\\mesh.conf ( if exist mesh.exe ( - mesh.exe -genconf > %ALLUSERSPROFILE%\\Mesh\\mesh.conf + mesh.exe -genconf > %ALLUSERSPROFILE%\\RiV-mesh\\mesh.conf ) ) EOF