azukiapp / azk

azk is a lightweight open source development environment orchestration tool. Instantly & safely run any environment on your local machine.
http://azk.io
Apache License 2.0
898 stars 63 forks source link

allow path() to reference user's home folder via ~ #465

Open slobo opened 9 years ago

slobo commented 9 years ago
    mounts: {
      '/root/.aws': path("~/.aws"),
    },

The above should be equivalent to

    mounts: {
      '/root/.aws': path(env.HOME + "/.aws"),
    },

Or even just documenting this technique in the docs would be great.