mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
b07d7ee1c6
* Add wrapper script to protect from coredumps and re-enable process reload * Allow args passthrough and clean up after-pack script
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 "$@" |