From b1969e7aaa9d0c42170827e6c9e28c3fda878183 Mon Sep 17 00:00:00 2001 From: etheory Date: Sat, 15 Feb 2025 16:44:27 +1100 Subject: [PATCH] Update makezip-win.py Resolve issues with error messages: - \makezip-win.py:6: SyntaxWarning: invalid escape sequence '\.' - makezip-win.py:8: SyntaxWarning: invalid escape sequence '\S' --- TemplateProject/scripts/makezip-win.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TemplateProject/scripts/makezip-win.py b/TemplateProject/scripts/makezip-win.py index dd90f4d..0145be8 100644 --- a/TemplateProject/scripts/makezip-win.py +++ b/TemplateProject/scripts/makezip-win.py @@ -3,9 +3,9 @@ scriptpath = os.path.dirname(os.path.realpath(__file__)) projectpath = os.path.abspath(os.path.join(scriptpath, os.pardir)) -IPLUG2_ROOT = "..\..\iPlug2" +IPLUG2_ROOT = "..\\..\\iPlug2" -sys.path.insert(0, os.path.join(scriptpath, IPLUG2_ROOT + '\Scripts')) +sys.path.insert(0, os.path.join(scriptpath, IPLUG2_ROOT + '\\Scripts')) from get_archive_name import get_archive_name