mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 11:44:51 +01:00
3 lines
241 B
Bash
Executable file
3 lines
241 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 --reverse --continue --dereference --delete --delete-first $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
|