diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-06-16 11:14:14 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-06-16 13:56:03 +0200 |
commit | 9da104538dd92861b2b9e4e95ccbafe12632fe83 (patch) | |
tree | 44667a4285beab9f00797bd85e35947990760e7b /setup_native/scripts | |
parent | 4b659f6c2fd72139d923637981786e38b5f68130 (diff) |
mac langpack script: simplify mdfind call to not use wildcard match
I think this is leftover from very early development stages when it
didn't have placeholders, but literal OpenOffice or similar at the time.
Not matching for wildcard but for full LibreOffice/LibreOfficeDev string
makes removing the languagepacks from the match superfluous
It was wrong anyway, since kMDItemDisplayName has the name without the
.app extension (you'd have to use _kMDItemDisplayNameWithExtensions for
that)
Change-Id: I37b1ed2d23ea18fd81a8844f35c9cb0d5dc34211
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96441
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'setup_native/scripts')
-rw-r--r-- | setup_native/scripts/osx_install_languagepack.applescript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_native/scripts/osx_install_languagepack.applescript b/setup_native/scripts/osx_install_languagepack.applescript index 495baceb4f31..107029421d1d 100644 --- a/setup_native/scripts/osx_install_languagepack.applescript +++ b/setup_native/scripts/osx_install_languagepack.applescript @@ -66,7 +66,7 @@ end if set found_ooos_all to "" -- command might return an error if spotlight is disabled completely try - set found_ooos_all to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLAPPPRODUCTNAME].app'\"") + set found_ooos_all to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]'\"") end try set found_ooos_all to found_ooos_all & " " & chooseMyOwn |