This repository was archived by the owner on Dec 14, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,26 @@ For [Ruby Sass][Sass], use [makenew/sass-package].
34
34
35
35
### Bootstrapping a New Project
36
36
37
- 1 . Clone this repository or download a [ release ] [ Releases ] .
37
+ 1 . Clone the master branch of this repository with
38
38
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.
40
57
This will replace the boilerplate, delete itself,
41
58
and stage changes for commit.
42
59
This script assumes the project repository will be hosted on GitHub.
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ makenew () {
41
41
read -p ' > GitHub user or organization name: ' mk_user
42
42
read -p ' > GitHub repository name: ' mk_repo
43
43
44
- sed -i -e ' 11,86d;177,180d ' README.md
44
+ sed -i -e ' 11,103d;195,198d ' README.md
45
45
sed -i -e " 11i ${mk_description} " README.md
46
46
sed -i -e ' 27d' bower.json
47
47
You can’t perform that action at this time.
0 commit comments