Skip to content

Commit 4ca1916

Browse files
committed
fix(vagrant): chdir to the dapps directory
1 parent 0efd29b commit 4ca1916

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ npx agoric [...options]
4040
Here is a simple script for how to get started.
4141

4242
```sh
43-
cd dapps
4443
# Initialize your dapp project.
4544
# Note: Change the `demo` name to something meaningful.
4645
agoric init demo

Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Vagrant.configure("2") do |config|
5959
config.vm.network "private_network", ip: private_network_ip
6060

6161
config.vm.provision "shell", inline: $script
62-
config.vm.provision "shell", inline: "echo 'cd /vagrant' >> .bash_profile", privileged: false
62+
config.vm.provision "shell", inline: "echo 'cd /vagrant/dapps' >> .bash_profile", privileged: false
6363

6464
config.vm.post_up_message = \
6565
"The private network IP address is: #{private_network_ip}\n\n" \

0 commit comments

Comments
 (0)