mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 08:45:13 +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
|