You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
include: ["*","**/*"],// this would upload everything except dot files
53
-
deleteRemote: false,// delete ALL existing files at destination before uploading, if true
54
-
forcePasv: true,// Passive mode is forced (EPSV command is not sent)
55
-
sftp: false// use sftp or ftp
46
+
deleteRemote: parseInt(process.env.DSDEPLOY_FTP_DELETE_REMOTE)===1,// delete ALL existing files at destination before uploading, if true
47
+
forcePasv: typeofprocess.env.DSDEPLOY_FTP_FORCE_PASSIVE_MODE!=='undefined' ? parseInt(process.env.DSDEPLOY_FTP_FORCE_PASSIVE_MODE)===1 : true,// Passive mode is forced (EPSV command is not sent)
48
+
sftp: parseInt(process.env.DSDEPLOY_FTP_USE_SFTP)===1// use sftp or ftp
0 commit comments