vscode-ftp-sync
vscode-ftp-sync copied to clipboard
uploading files on save (config uploadOnSave: false)
download files and not matter what is in the config uploadOnSave is false,
"generatedFiles" "uploadOnSave": false
I had the same issue, you just have to restart vscode, it started working for me then
Got the same problem and did not solve by restarting vscode.
I'm experiencing the same issue and restarting the app has had no effect...
Same problem. It uploads/sync file on save even if it's false. I work with git, so I don't want that my branch develop will go on my ftp. It has to sync only when I call the function (and I will do only when I'm in master)
Same problem. no effect when restart vscode, wish to fix it
Also having this problem.
"uploadOnSave": false
ftp-sync is still uploading files on save though.
The same for me. Reinstalling addon and restarting vscode has no result.
delete C:\Users\User.vscode\extensions\lukasz-wronski.ftp-sync-0.3.9\modules\on-save.js restart VSCode
Got this behavior too - potentially a serious security problem
@susliandia
delete C:\Users\User.vscode\extensions\lukasz-wronski.ftp-sync-0.3.9\modules\on-save.js restart VSCode
So hard
On MacOs go to terminal and do: ls ~/.vscode/extensions I renamed the file and reloaded VS Code and it stopped sending after save.
I get this:
Try change User.vscode with the name of your user on this Windows
It's there, thank you very much....
Just installed vscode and this extension and immediately ran into the same problem, uploadOnSave parameter does not work.
solution: Add a check for the "uploadOnSave" parameter in the "on-generate.js" file
file path: C:\Users\YourUser.vscode\extensions\lukasz-wronski.ftp-sync-0.3.9\modules\on-generate.js
Restart vscode.
Thank you!
if(!config.uploadOnSave) return;
It solved this problem.
Just installed vscode and this extension and immediately ran into the same problem, uploadOnSave parameter does not work. solution: Add a check for the "uploadOnSave" parameter in the "on-generate.js" file file path: C:\Users\YourUser.vscode\extensions\lukasz-wronski.ftp-sync-0.3.9\modules\on-generate.js
Restart vscode.
Thank you! That solved the issue.
Thanks alot - worked for me aswell!
果然在on-generate.js添加那句就解决了。Thank you! It solved the problem