summaryrefslogtreecommitdiffstats
path: root/packaging/nsis/windeployqt-to-nsis.py
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/nsis/windeployqt-to-nsis.py')
-rw-r--r--packaging/nsis/windeployqt-to-nsis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/nsis/windeployqt-to-nsis.py b/packaging/nsis/windeployqt-to-nsis.py
index 2339cf34..2063282a 100644
--- a/packaging/nsis/windeployqt-to-nsis.py
+++ b/packaging/nsis/windeployqt-to-nsis.py
@@ -83,7 +83,7 @@ with open(args.outfile, 'w') as f:
if len(rel_path) > 1:
base_dir = rel_path[0].strip('"')
if base_dir != current_dir:
- set_out_path = 'SetOutPath "$INSTDIR\{}"'.format(base_dir)
+ set_out_path = r'SetOutPath "$INSTDIR\{}"'.format(base_dir)
print(set_out_path, file=f)
current_dir = base_dir