Skip to content

Commit 0ad2a1e

Browse files
author
Jannik Zappe
committed
created "real" one-line installer. All logic now sits in "install" which is curled and piped into bash
1 parent 7d56c26 commit 0ad2a1e

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,9 @@ Installation
1212
------------
1313
Just copy the following line to the terminal:
1414

15-
git clone https://github.com/a1ee9b/bullet-installation.git ; cd bullet-installation; chmod +x install; ./install
15+
curl https://raw.github.com/a1ee9b/bullet-installation/master/install | bash
1616

17-
To get rid of the git stuff just run
18-
19-
rm -Rf .git
20-
21-
Now you can initialize your own repo.
17+
Don't trust me? Just take a look at the install file.
2218

2319
Bullet
2420
------------

install

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
#!/usr/bin/env bash
2+
3+
# get the repo
4+
git clone https://github.com/a1ee9b/bullet-installation.git
5+
cd bullet-installation
6+
7+
# get composer and install it
28
curl -s http://getcomposer.org/installer | php
3-
php composer.phar install
9+
php composer.phar install
10+
11+
# remove git-stuff
12+
rm -Rf .git

0 commit comments

Comments
 (0)