mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-28 02:38:43 +00:00
7 lines
86 B
Bash
7 lines
86 B
Bash
|
#!/bin/sh
|
||
|
if which faked; then
|
||
|
faked --debug "$@"
|
||
|
else
|
||
|
faked-sysv --debug "$@"
|
||
|
fi
|