mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-22 23:01:33 -04:00
7 lines
86 B
Bash
7 lines
86 B
Bash
|
|
#!/bin/sh
|
||
|
|
if which faked; then
|
||
|
|
faked --debug "$@"
|
||
|
|
else
|
||
|
|
faked-sysv --debug "$@"
|
||
|
|
fi
|