6 lines
78 B
Bash
6 lines
78 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [[ -z "$DO_FTP_BACKUP" ]]; then
|
|
sh ftp_backup.sh
|
|
fi
|
|
|