mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-24 08:38:40 -07:00
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
9 lines
316 B
Bash
9 lines
316 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Work-around https://gitlab.gnome.org/GNOME/gnome-build-meta/-/issues/754
|
|
grep -q org.freedesktop.Platform.GL.nvidia /.flatpak-info && export WEBKIT_DISABLE_DMABUF_RENDERER=1
|
|
|
|
# Work-around https://github.com/bambulab/BambuStudio/issues/3440
|
|
export LC_ALL=C.UTF-8
|
|
|
|
exec /app/bin/orca-slicer "$@"
|