mirror of https://github.com/axmolengine/axmol.git
Merge pull request #6294 from lmskater/fix-ftp-home
[Jenkins][ci skip] Fix ftp home in upload_apk.sh
This commit is contained in:
commit
1d64d4038a
|
@ -1,10 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
calfile=$1
|
||||||
localfile=$1
|
|
||||||
remotefile=$2
|
remotefile=$2
|
||||||
|
|
||||||
sftp redmine@10.10.11.15 << EOF
|
sftp $FTP_HOME << EOF
|
||||||
put $localfile $remotefile
|
put $localfile $remotefile
|
||||||
bye
|
bye
|
||||||
EOF
|
EOF
|
||||||
echo "upload finished"
|
echo "upload finished"
|
||||||
|
|
Loading…
Reference in New Issue