diff options
Diffstat (limited to 'Windows/esim-setup-script.nsi')
-rw-r--r-- | Windows/esim-setup-script.nsi | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Windows/esim-setup-script.nsi b/Windows/esim-setup-script.nsi index 69e55b30..23f33e92 100644 --- a/Windows/esim-setup-script.nsi +++ b/Windows/esim-setup-script.nsi @@ -324,28 +324,28 @@ Section Uninstall Pop $0 DetailPrint "EnVar::AddValue returned=|$0|" - GetFullPathName $1 $INSTDIR\..\mingw64\bin - EnVar::DeleteValue "Path" $1 + GetFullPathName $1 $INSTDIR\..\MSYS\mingw64\bin + EnVar::DeleteValue "Path" $1 Pop $0 DetailPrint "EnVar::AddValue returned=|$0|" - - GetFullPathName $1 $INSTDIR\..\mingw64\msys\bin + + GetFullPathName $1 $INSTDIR\..\MSYS\usr\bin EnVar::DeleteValue "Path" $1 Pop $0 DetailPrint "EnVar::AddValue returned=|$0|" - GetFullPathName $1 $INSTDIR\..\mingw64\GHDL\bin - EnVar::DeleteValue "Path" $1 - Pop $0 - DetailPrint "EnVar::AddValue returned=|$0|" + ;GetFullPathName $1 $INSTDIR\..\mingw64\GHDL\bin + ;EnVar::DeleteValue "Path" $1 + ;Pop $0 + ;DetailPrint "EnVar::AddValue returned=|$0|" - GetFullPathName $1 $INSTDIR\..\ngspice-nghdl\bin + GetFullPathName $1 $INSTDIR\..\nghdl-simulator\bin EnVar::DeleteValue "Path" $1 Pop $0 DetailPrint "EnVar::AddValue returned=|$0|" - RMDir /r "$INSTDIR\..\mingw64" - RMDir /r "$INSTDIR\..\ngspice-nghdl" + RMDir /r "$INSTDIR\..\MSYS" + RMDir /r "$INSTDIR\..\nghdl-simulator" RMDir /r "$INSTDIR\..\eSim\nghdl" ;Note that in uninstaller code, $INSTDIR contains the directory where the uninstaller lies |