Browse Source

Set RUST_BACKTRACE=1 at runtime using manifest

Flatpak manifest previously set RUST_BACKTRACE=1 during the build only, not
runtime, using the "env" build option. However, the intention was probably
to set RUST_BACKTRACE=1 at runtime, not during the build.
merge-requests/1327/merge
enterprisey 5 years ago
parent
commit
7eb6c1f8b0
  1. 8
      build-aux/org.gnome.FractalNext.Devel.json

8
build-aux/org.gnome.FractalNext.Devel.json

@ -15,7 +15,8 @@
"--talk-name=org.a11y.Bus",
"--talk-name=org.freedesktop.secrets",
"--env=RUST_LOG=fractal=debug",
"--env=G_MESSAGES_DEBUG=none"
"--env=G_MESSAGES_DEBUG=none",
"--env=RUST_BACKTRACE=1"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/rust-stable/bin",
@ -25,10 +26,7 @@
"test-args" : [
"--socket=x11",
"--share=network"
],
"env" : {
"RUST_BACKTRACE" : "1"
}
]
},
"modules" : [
{

Loading…
Cancel
Save