diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-11-26 00:06:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-27 00:53:17 +0100 |
| commit | 913bb4e71f287ec7fc050ba5bcf12e3fae26ecfa (patch) | |
| tree | 502e2f447248e334fffac0d22d566a8082bfbc36 | |
| parent | 41171757b87019cb979315d2ecd7effa483aed79 (diff) | |
Add missing file=f so that all desktop shortcuts are uninstalled.
| -rw-r--r-- | platform/windows/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/wscript b/platform/windows/wscript index 5c88a6ed2..144b680c1 100644 --- a/platform/windows/wscript +++ b/platform/windows/wscript @@ -496,7 +496,7 @@ DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\U else: print('Delete "$DESKTOP\\DCP-o-matic 2.lnk"', file=f) for s, l in tools: - print('Delete "$DESKTOP\\DCP-o-matic 2 %s.lnk"' % l) + print('Delete "$DESKTOP\\DCP-o-matic 2 %s.lnk"' % l, file=f) print(""" Delete "$SMPROGRAMS\\DCP-o-matic 2\\*.*" |
