Wpatch Help
Im trying to create a patch for software already installed somewhere and a found the plugin Wpatch
so ive created a bat file that
WGenPatDir.exe --precise --exclude *.tmp;.svn dir2 dir1 (old and new svn software locations)
I want to create a nsi file that updates location InstallDir $PROGRAMFILES\mySoftware
but it does not seam to update the files in that location, I believe im following the Wpatch instructions correctly.
Name "Sample WPatch"
OutFile Sample.exe
ShowInstDetails show
InstallDir $PROGRAMFILES\mySoftware
Section
InitPluginsDir
SectionEnd
!include WGenPatDir.nsh
Section
IfErrors 0 +2
MessageBox MB_OK "There has been some errors !"
SectionEnd