mirror of
https://github.com/wez/wezterm.git
synced 2024-11-12 21:30:45 +03:00
8 lines
295 B
Plaintext
8 lines
295 B
Plaintext
|
#!/bin/sh
|
||
|
# When invoked via linuxdeploy.AppImage, the LD_LIBRARY_PATH resolves
|
||
|
# shared objects to the AppImage rather than the system, which causes
|
||
|
# appstreamcli to fail on Fedora, hence this wrapper script to clean
|
||
|
# up the environment.
|
||
|
unset LD_LIBRARY_PATH
|
||
|
exec /usr/bin/appstreamcli "$@"
|