mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-01 13:13:36 +01:00
3508b4631d
Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
19 lines
351 B
Bash
19 lines
351 B
Bash
#!/bin/sh
|
|
|
|
# disable core dumps
|
|
ulimit -c 0
|
|
|
|
# might be behind symlink
|
|
RAW_PATH=$(readlink -f "$0")
|
|
APP_PATH=$(dirname $RAW_PATH)
|
|
|
|
# force use of base image libdus in snap
|
|
if [ -e "/usr/lib/x86_64-linux-gnu/libdbus-1.so.3" ]
|
|
then
|
|
export LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libdbus-1.so.3"
|
|
fi
|
|
|
|
# pass through all args
|
|
$APP_PATH/bitwarden-app "$@"
|
|
|