mirror of
https://github.com/GenieTim/ftp-action.git
synced 2024-12-05 07:22:25 +08:00
5b5c1425a2
This reverts commit 098896f8ae
.
6 lines
199 B
Bash
Executable File
6 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ssl:verify-certificate false; mirror --reverse --continue --dereference -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
|