Skip to content

Commit daaadec

Browse files
committed
Remember to pass arguments in dexa and rexa
1 parent cffbd8d commit daaadec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Vagrant.configure(2) do |config|
5656
# compiled versions of exa.
5757
config.vm.provision :shell, privileged: true, inline: <<-EOF
5858
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
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
6161
chmod +x /usr/bin/{exa,dexa,rexa}
6262
EOF
6363

0 commit comments

Comments
 (0)