mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
8 lines
122 B
Bash
8 lines
122 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# disable core dumps
|
||
|
ulimit -c 0
|
||
|
|
||
|
APP_PATH=$(dirname "$0")
|
||
|
# pass through all args
|
||
|
$APP_PATH/bitwarden-app "$@"
|