mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-01 02:46:37 +00:00
16 lines
251 B
Bash
16 lines
251 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -r /etc/bitwarden_rs.sh ]; then
|
||
|
. /etc/bitwarden_rs.sh
|
||
|
fi
|
||
|
|
||
|
if [ -d /etc/bitwarden_rs.d ]; then
|
||
|
for f in /etc/bitwarden_rs.d/*.sh; do
|
||
|
if [ -r $f ]; then
|
||
|
. $f
|
||
|
fi
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
exec /bitwarden_rs "${@}"
|