Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 28ced9f

Browse files
committed
Update README Bootstrapping section
1 parent bf1da69 commit 28ced9f

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,26 @@ For [Ruby Sass][Sass], use [makenew/sass-package].
3434

3535
### Bootstrapping a New Project
3636

37-
1. Clone this repository or download a [release][Releases].
37+
1. Clone the master branch of this repository with
3838

39-
2. Run `./makenew.sh` and follow the prompts.
39+
```
40+
$ git clone --single-branch https://github.com/makenew/libsass-package.git new-libsass-package
41+
$ cd new-libsass-package
42+
```
43+
44+
Optionally, reset to the latest [release][Releases] with
45+
46+
```
47+
$ git reset --hard libsass-package-v2.0.2
48+
```
49+
50+
2. Run
51+
52+
```
53+
$ ./makenew.sh
54+
```
55+
56+
and follow the prompts.
4057
This will replace the boilerplate, delete itself,
4158
and stage changes for commit.
4259
This script assumes the project repository will be hosted on GitHub.

makenew.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ makenew () {
4141
read -p '> GitHub user or organization name: ' mk_user
4242
read -p '> GitHub repository name: ' mk_repo
4343

44-
sed -i -e '11,86d;177,180d' README.md
44+
sed -i -e '11,103d;195,198d' README.md
4545
sed -i -e "11i ${mk_description}" README.md
4646
sed -i -e '27d' bower.json
4747

0 commit comments

Comments
 (0)