We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daaadec commit 956c5b7Copy full SHA for 956c5b7
Vagrantfile
@@ -55,10 +55,9 @@ Vagrant.configure(2) do |config|
55
# Create "dexa" and "rexa" scripts that run the debug and release
56
# compiled versions of exa.
57
config.vm.provision :shell, privileged: true, inline: <<-EOF
58
- echo -e "#!/bin/sh\necho \"Use 'dexa' for debug exa, or 'rexa' for release exa\"" > /usr/bin/exa
59
- echo -e "#!/bin/sh\n/home/#{developer}/target/debug/exa \\$*" > /usr/bin/dexa
+ echo -e "#!/bin/sh\n/home/#{developer}/target/debug/exa \\$*" > /usr/bin/exa
60
echo -e "#!/bin/sh\n/home/#{developer}/target/release/exa \\$*" > /usr/bin/rexa
61
- chmod +x /usr/bin/{exa,dexa,rexa}
+ chmod +x /usr/bin/{exa,rexa}
62
EOF
63
64
0 commit comments