In an install script I create an output dir tmp which I remove in the end with the command with
RMDir /r "$INSTDIR\tmp"
With NSIS 2.0 everything was OK. With NSIS 2.01 the tmp directory is still there !
Logged In: YES user_id=584402
Make sure $INSTDIR\tmp is not the current directory. SetOutPath sets the current directory.
Logged In: YES user_id=913642
This was the problem. Thank you for pointing it out.
Log in to post a comment.
Logged In: YES
user_id=584402
Make sure $INSTDIR\tmp is not the current directory.
SetOutPath sets the current directory.
Logged In: YES
user_id=913642
This was the problem. Thank you for pointing it out.