diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2018-01-18 20:40:33 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2018-01-18 20:40:33 +0100 |
commit | d83df803c9008dba1a34b5c23ac431efc1e0a456 (patch) | |
tree | 66d0869c606230f6b01490557a3a97db508c6ab3 /Vagrantfile | |
parent | 337c9d2b2280f8e252e8c9acd7e73caf1291d7a5 (diff) | |
download | rocket-blog-d83df803c9008dba1a34b5c23ac431efc1e0a456.tar.gz rocket-blog-d83df803c9008dba1a34b5c23ac431efc1e0a456.tar.bz2 rocket-blog-d83df803c9008dba1a34b5c23ac431efc1e0a456.zip |
Fix rustflags to set incremental cache.
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index b4bffcf..6d7db91 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -76,7 +76,7 @@ Vagrant.configure("2") do |config| su - vagrant -c 'echo "PATH=$HOME/.cargo/bin:$PATH" >> ~/.bash_profile' # Set the incremental build cache to a filesystem that supports hard links - su - vagrant -c "echo export RUSTFLAGS='-C incremental=$HOME/tmp/rust' >> ~/.bashrc + su - vagrant -c 'echo export RUSTFLAGS="-Cincremental=$HOME/tmp/rust" >> ~/.bashrc' SHELL end |