restic/entrypoint.sh

9 lines
92 B
Bash
Raw Normal View History

2023-04-12 14:47:01 +00:00
#!/bin/bash
#
if [[ "$1" == "bash" ]]; then
exec /usr/bin/bash
else
restic "$@"
fi