From cc83817895371ea09d572b80b09de47e637388eb Mon Sep 17 00:00:00 2001 From: Bradley Carpenter Date: Wed, 12 Nov 2014 10:29:31 -0500 Subject: [PATCH 1/5] Update INSTALL.md --- INSTALL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 12fe3aa03..84bb3de81 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,7 +6,7 @@ VirtualBox. Follow these steps: * [Download and install Vagrant](http://www.vagrantup.com/downloads.html) * Follow the instructions to [download and install VirtualBox](http://docs-v1.vagrantup.com/v1/docs/getting-started/) * Run these commands: - +``` vagrant box add pokecrystal http://diyhpl.us/~bryan/irc/pokecrystal/pokecrystal.box mkdir vagrantbox cd vagrantbox @@ -15,6 +15,7 @@ VirtualBox. Follow these steps: vagrant ssh -c "cd /vagrant && git clone git://github.com/kanzure/pokecrystal.git" vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update" vagrant ssh + ``` Running "vagrant ssh" will give you a shell to type commands into for compiling the source code. The the "virtualbox" directory on the host appears as a shared From 70c90ad4256324d47edb944ef6228848d21ed9fa Mon Sep 17 00:00:00 2001 From: Bradley Carpenter Date: Wed, 12 Nov 2014 10:30:37 -0500 Subject: [PATCH 2/5] Update INSTALL.md --- INSTALL.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 84bb3de81..34eefc0ba 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -6,6 +6,7 @@ VirtualBox. Follow these steps: * [Download and install Vagrant](http://www.vagrantup.com/downloads.html) * Follow the instructions to [download and install VirtualBox](http://docs-v1.vagrantup.com/v1/docs/getting-started/) * Run these commands: + ``` vagrant box add pokecrystal http://diyhpl.us/~bryan/irc/pokecrystal/pokecrystal.box mkdir vagrantbox @@ -15,7 +16,8 @@ VirtualBox. Follow these steps: vagrant ssh -c "cd /vagrant && git clone git://github.com/kanzure/pokecrystal.git" vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update" vagrant ssh - ``` + +``` Running "vagrant ssh" will give you a shell to type commands into for compiling the source code. The the "virtualbox" directory on the host appears as a shared From 7302978f13089da713869aa8a1d7e73b375a6abc Mon Sep 17 00:00:00 2001 From: Bradley Carpenter Date: Wed, 12 Nov 2014 10:39:43 -0500 Subject: [PATCH 3/5] Update INSTALL.md --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 34eefc0ba..433ce61a5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,7 +13,7 @@ VirtualBox. Follow these steps: cd vagrantbox vagrant init pokecrystal vagrant up - vagrant ssh -c "cd /vagrant && git clone git://github.com/kanzure/pokecrystal.git" + vagrant ssh -c "cd /vagrant && git clone git://github.com/bradley-plus/pokecrystal.git" vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update" vagrant ssh From b99b117b8116e65c6d90d9c8d303cedb5878c215 Mon Sep 17 00:00:00 2001 From: Bradley Carpenter Date: Wed, 12 Nov 2014 12:19:00 -0500 Subject: [PATCH 4/5] Update INSTALL.md --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 433ce61a5..5278dc551 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,7 +13,7 @@ VirtualBox. Follow these steps: cd vagrantbox vagrant init pokecrystal vagrant up - vagrant ssh -c "cd /vagrant && git clone git://github.com/bradley-plus/pokecrystal.git" + vagrant ssh -c "cd /vagrant && git clone git://github.com/vagrant/pokecrystal.git" vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update" vagrant ssh From cdb0bacd3a6e70c272bda986b394ececf8f57bc6 Mon Sep 17 00:00:00 2001 From: Bradley Carpenter Date: Wed, 12 Nov 2014 12:19:45 -0500 Subject: [PATCH 5/5] Update INSTALL.md --- INSTALL.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 5278dc551..950099457 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -13,10 +13,9 @@ VirtualBox. Follow these steps: cd vagrantbox vagrant init pokecrystal vagrant up - vagrant ssh -c "cd /vagrant && git clone git://github.com/vagrant/pokecrystal.git" + vagrant ssh -c "cd /vagrant && git clone git://github.com/kanzure/pokecrystal.git" vagrant ssh -c "cd /vagrant/pokecrystal && git submodule init && git submodule update" vagrant ssh - ``` Running "vagrant ssh" will give you a shell to type commands into for compiling