From 2c8528d9730bfb0a94bca26eda3bb126c98c46ec Mon Sep 17 00:00:00 2001 From: rfm Date: Mon, 2 Sep 2024 21:52:02 +0100 Subject: [PATCH] Fix bug adding extra quotes --- Tools/AGSOutput.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/AGSOutput.m b/Tools/AGSOutput.m index 560399bbd..1e79886a5 100644 --- a/Tools/AGSOutput.m +++ b/Tools/AGSOutput.m @@ -2383,7 +2383,7 @@ static BOOL snuggleStart(NSString *t) */ if (up != nil && [up isEqual: [name lastPathComponent]] == NO) { - [str appendString: @"\" up=\""]; + [str appendString: @" up=\""]; [str appendString: up]; [str appendString: @"\""]; }