Hi @PAZHANI ,
As far as I know, when you use FTP you need to enclose names with spaces in double quotation marks. See for reference here:
and here:
Are you using FTP in Pipelines builds? If so, are you using an ftp command in your yml file's script or are you using the ftp-deploy pipe, https://bitbucket.org/atlassian/ftp-deploy/src/master/?
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please find our yml file codes:
# Template PHP Build
# This template allows you to validate your PHP application.
# The workflow allows running tests and code linting on the default branch.
image: bitnami/git
pipelines:
default:
- parallel:
- step:
script:
- echo "branch commit successful"
branches:
'{master}':
- step:
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push -vv --user $FTP_USERNAME --passwd $FTP_PASSWORD --insecure sftp://xxxxxx/xxxx.com/
- echo "Master Branch commit successful"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.