1

Using appfog, I'm trying to update only a single directory of my site.

af update myApp --path some/directory

Now, according to this post - How do I push an app in chunks to Appfog?

This is not a possible task. So, my question is, what does the --path option do?

Community
  • 1
  • 1
Justin Carlson
  • 2,670
  • 2
  • 18
  • 19

1 Answers1

0

The --path switch overrides the local root path of your application. It will upload the entire app from that location. This might be useful for scripts that update apps from a different current working directory.

Tim Santeford
  • 27,385
  • 16
  • 74
  • 101
  • Thanks Tim, I'm curious if this is documented somewhere that I missed. I noticed there is also a --debug option that I am also unsure of what it does. – Justin Carlson Mar 30 '13 at 18:51