diff --git a/CHANGELOG.md b/CHANGELOG.md index dfebf41..3ce3169 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +### Issue Fixes + +- Fixed python string template in Windows uninstallation script, reported on: https://github.com/ful1e5/clickgen/commit/4fbf21b1d04755c9a6bd2b77b5b69f9ad1c1b56b. + ## [v2.2.0] - 21 December 2023 ### Issues Fixes diff --git a/src/clickgen/packer/windows.py b/src/clickgen/packer/windows.py index a576acc..d79d77c 100644 --- a/src/clickgen/packer/windows.py +++ b/src/clickgen/packer/windows.py @@ -68,9 +68,9 @@ :: =============================================================================== :: This enables a popup message box to indicate a user for the operation complete. :: =============================================================================== -echo x=msgbox("Successfully deleted the cursor!", 0+64, "Cursor") > %tmp%\tmp.vbs -wscript %tmp%\tmp.vbs -del %tmp%\tmp.vbs +echo x=msgbox("Successfully deleted the cursor!", 0+64, "Cursor") > %tmp%\\tmp.vbs +wscript %tmp%\\tmp.vbs +del %tmp%\\tmp.vbs """ ), }