lucasmotta / dploy

⛔️ currently unmaintained ⛔️
http://lucasmotta.github.io/dploy/
MIT License
988 stars 89 forks source link

Don't work with "dist/" local directory #104

Open cedric07 opened 7 years ago

cedric07 commented 7 years ago

dploy not work when i use "dist" for local directory but work when i use an other name :

prod: host: "ftp.myserver.com" user: "myuser" pass: "mypassword" path: local: "dist/" remote: "www/"

Any solutions ?

benavern commented 7 years ago

I think, your dist folder is ignored by your .gitignore file you could:

fbnlsr commented 7 years ago

The solution proposed by @benavern is good. However, it defeats the entire purpose of Dploy when working with generated content. For instance, when using Jekyll, it's a good practice to put the content of your generated website in the .gitignore file. Having to manually include its content back into Dploy makes it that it defeats the use of the .rev file, as the content of the entire website is uploaded again.

big-kahuna-burger commented 6 years ago

@benavern thank you!