mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 12:37:39 +03:00
Fix argparse handling when no subcommand given Implement check command Implement i18n command Add Ctrl+F TOC Implement merge command Implement source tarball creation Implement macOS builds Implement Linux builds Support building for multiple platforms Disable test building Debug-log executed commands Allow cross-compilation without Docker when using vcpkg Implement macOS codesigning and notarization Remove obsolete globals Check xcode setup Implement GPG signing Re-enable Git branch checkout Show key selection for merge commit signing Check for git and merge basic and tool checks Remove redundant checkout message Update headline formatting
19 lines
447 B
Bash
Executable file
19 lines
447 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
_APPDIR="$(dirname "$(realpath "$0")")"
|
|
PATH="${_APPDIR}/usr/bin:${PATH}"
|
|
LD_LIBRARY_PATH="${_APPDIR}/usr/lib:${LD_LIBRARY_PATH}"
|
|
export PATH
|
|
export LD_LIBRARY_PATH
|
|
|
|
if [ "$1" == "cli" ]; then
|
|
shift
|
|
exec keepassxc-cli "$@"
|
|
elif [ "$1" == "proxy" ]; then
|
|
shift
|
|
exec keepassxc-proxy "$@"
|
|
elif [ -v CHROME_WRAPPER ] || [ -v MOZ_LAUNCHED_CHILD ]; then
|
|
exec keepassxc-proxy "$@"
|
|
else
|
|
exec keepassxc "$@"
|
|
fi
|