We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The NSIS uninstaller for Windows uses RMDir /r "$INSTDIR" to cleanup the installation folder:
RMDir /r "$INSTDIR"
friture/installer/friture-setup.nsi
Line 150 in fb6ac23
This is not safe, since the user might have chosen to install Friture in a folder that already contains other programs or data. This problem is documented in NSIS documentation: https://nsis.sourceforge.io/Reference/RMDir and a alternative is offered here: https://nsis.sourceforge.io/Uninstall_only_installed_files
The text was updated successfully, but these errors were encountered:
This will be fixed by the move to a MSI installer instead of NSIS. This new installer is available in Friture 0.40.
Sorry, something went wrong.
No branches or pull requests
The NSIS uninstaller for Windows uses
RMDir /r "$INSTDIR"
to cleanup the installation folder:friture/installer/friture-setup.nsi
Line 150 in fb6ac23
This is not safe, since the user might have chosen to install Friture in a folder that already contains other programs or data. This problem is documented in NSIS documentation: https://nsis.sourceforge.io/Reference/RMDir and a alternative is offered here: https://nsis.sourceforge.io/Uninstall_only_installed_files
The text was updated successfully, but these errors were encountered: