Kaydet (Commit) bd242a87 authored tarafından Christian Lohmaier's avatar Christian Lohmaier Kaydeden (comit) Fridrich Strba

fdo#67258 catch error when calling mdfind

This can be the case when spotlight is disabled. So just ignore any
error when trying to locate installed versions and let the user continue
with the manual selection instead of aborting.

Change-Id: I2c4e12652b8cb3b43af3ca6d8d553f0558f91858
Reviewed-on: https://gerrit.libreoffice.org/5069Reviewed-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
Tested-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
üst dda3686a
...@@ -63,7 +63,12 @@ if (button returned of result) is AbortLabel then ...@@ -63,7 +63,12 @@ if (button returned of result) is AbortLabel then
return 2 return 2
end if end if
set the found_ooos_all to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-bundle' && kMDItemDisplayName == '[PRODUCTNAME]*' && kMDItemDisplayName != '[FULLAPPPRODUCTNAME].app'\"") & " 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'\"")
end try
set found_ooos_all to found_ooos_all & "
" & chooseMyOwn " & chooseMyOwn
set found_ooos_all_paragraphs to paragraphs in found_ooos_all set found_ooos_all_paragraphs to paragraphs in found_ooos_all
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment