mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2026-01-09 20:58:21 +01:00
3 lines
244 B
Bash
Executable file
3 lines
244 B
Bash
Executable file
#!/bin/sh -l
|
|
|
|
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ftp:ssl-force $INPUT_FORCESSL; set ssl:verify-certificate false; mirror $INPUT_OPTIONS --reverse --continue --dereference -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
|