mirror of
https://github.com/wez/wezterm.git
synced 2024-11-09 22:15:15 +03:00
8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
#!/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 "$@"
|