mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2024-12-22 10:49:48 +01:00
ca3f8d253d
* Update entrypoint.sh * Update action.yml * Update README.md * Update entrypoint.sh * pass through additional mirror options * restore meta-data
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"
|