diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-04-23 09:55:22 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-04-23 09:55:22 +0100 |
commit | 2a77c8fca7e19cf8148802865e6525304b07e3d3 (patch) | |
tree | 6f26bd632127269b0615d92cf5a04bdb5a632929 | |
parent | 5dfd21e8ec48a558ae48826d479af7bca3a9575b (diff) |
Fix Vagrantfile customisation docs
Used the local constant rather than the env var required
-rw-r--r-- | Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index 985b796af..5d56914a5 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -37,10 +37,10 @@ # exporting to the environment. # # # Prefixing the command -# $ ALAVETELI_MEMORY=2048 vagrant up +# $ ALAVETELI_VAGRANT_MEMORY=2048 vagrant up # # # Exporting to the environment -# $ export ALAVETELI_MEMORY=2048 +# $ export ALAVETELI_VAGRANT_MEMORY=2048 # $ vagrant up # # Both have the same effect, but exporting will retain the variable for the |