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 cffbd8d commit daaadecCopy full SHA for daaadec
Vagrantfile
@@ -56,8 +56,8 @@ Vagrant.configure(2) do |config|
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
60
- echo -e "#!/bin/sh\n/home/#{developer}/target/release/exa" > /usr/bin/rexa
+ echo -e "#!/bin/sh\n/home/#{developer}/target/debug/exa \\$*" > /usr/bin/dexa
+ echo -e "#!/bin/sh\n/home/#{developer}/target/release/exa \\$*" > /usr/bin/rexa
61
chmod +x /usr/bin/{exa,dexa,rexa}
62
EOF
63
0 commit comments