Skip to content

Commit

Permalink
fix: python string template on uninstall.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Feb 19, 2024
1 parent 01a02b7 commit 486d9fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/clickgen/packer/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
),
}
Expand Down

0 comments on commit 486d9fb

Please sign in to comment.