From 7c6d8d41f7e0257fb80ddb88eeca48faf8f14a7e Mon Sep 17 00:00:00 2001 From: Trevor DeVore Date: Mon, 6 Aug 2018 07:34:14 -0500 Subject: [PATCH 1/2] Include folders in iOS extension code folders --- docs/notes/bugfix-21468.md | 1 + ide-support/revsblibrary.livecodescript | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 docs/notes/bugfix-21468.md diff --git a/docs/notes/bugfix-21468.md b/docs/notes/bugfix-21468.md new file mode 100644 index 00000000000..7e4c788931f --- /dev/null +++ b/docs/notes/bugfix-21468.md @@ -0,0 +1 @@ +# Include .framework folders in iOS extension code folders diff --git a/ide-support/revsblibrary.livecodescript b/ide-support/revsblibrary.livecodescript index c4056792ae5..a0df9d9f847 100644 --- a/ide-support/revsblibrary.livecodescript +++ b/ide-support/revsblibrary.livecodescript @@ -2573,7 +2573,7 @@ private command __UpdateSettingsFromCodeFolder pPath, pCodeFolderName, pPlatform appendToStringList tFolderPath & slash & tLine, xSettings["extension_code_resources"] end repeat - if pPlatform is "mac" then + if pPlatform is among the items of "mac-ios" then local tFolders put folders(tFolderPath) into tFolders filter tFolders without ".*" From bc8ad306cb9c21cc3326d3076e0a38fb659b46de Mon Sep 17 00:00:00 2001 From: Trevor DeVore Date: Mon, 6 Aug 2018 18:14:51 -0500 Subject: [PATCH 2/2] use `among the words` --- ide-support/revsblibrary.livecodescript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide-support/revsblibrary.livecodescript b/ide-support/revsblibrary.livecodescript index a0df9d9f847..ebbd7e485c6 100644 --- a/ide-support/revsblibrary.livecodescript +++ b/ide-support/revsblibrary.livecodescript @@ -2573,7 +2573,7 @@ private command __UpdateSettingsFromCodeFolder pPath, pCodeFolderName, pPlatform appendToStringList tFolderPath & slash & tLine, xSettings["extension_code_resources"] end repeat - if pPlatform is among the items of "mac-ios" then + if pPlatform is among the words of "mac ios" then local tFolders put folders(tFolderPath) into tFolders filter tFolders without ".*"