Skip to content

Commit

Permalink
Merge pull request #38853 from mantidproject/fix_mac_standalone_packa…
Browse files Browse the repository at this point in the history
…ging

Fix macOS standalone packaging
  • Loading branch information
jclarkeSTFC authored Feb 14, 2025
2 parents 645714f + 769f601 commit 6271c25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion installers/conda/common/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ function trim_conda() {
mv "$bundle_conda_prefix"/share_tmp/doc "$bundle_conda_prefix"/share/
mkdir -p "$bundle_conda_prefix"/share/glib-2.0/schemas
mv "$bundle_conda_prefix"/share_tmp/glib-2.0/schemas "$bundle_conda_prefix"/share/glib-2.0/
mv "$bundle_conda_prefix"/share_tmp/X11 "$bundle_conda_prefix"/share/
if [ -d "$bundle_conda_prefix"/share_tmp/X11 ]; then
# On some linux flavours we need this on some otherwise workbench won't launch
mv "$bundle_conda_prefix"/share_tmp/X11 "$bundle_conda_prefix"/share/
fi
# Heavily cut down translations
mv "$bundle_conda_prefix"/translations "$bundle_conda_prefix"/translations_tmp
mkdir -p "$bundle_conda_prefix"/translations/qtwebengine_locales
Expand Down

0 comments on commit 6271c25

Please sign in to comment.