@@ -7,7 +7,7 @@ Without .git:
7
7
(Not using git? Be sure to exclude .devkit and .deps from revision control)
8
8
devkit setup is complete; you can now commit the changes
9
9
10
-
10
+ ~~~ sh
11
11
$ ls -ap
12
12
./
13
13
../
@@ -20,6 +20,7 @@ Without .git:
20
20
total * (glob)
21
21
* README.md (glob)
22
22
* bootstrap (glob)
23
+ * build -> bootstrap (glob)
23
24
* cibuild -> bootstrap (glob)
24
25
* clean -> bootstrap (glob)
25
26
* console -> bootstrap (glob)
@@ -28,10 +29,10 @@ Without .git:
28
29
* test -> bootstrap (glob)
29
30
* update -> bootstrap (glob)
30
31
31
-
32
32
$ diff script/bootstrap .devkit/script/bootstrap
33
33
$ diff .envrc .devkit/sample.envrc
34
34
$ diff .dkrc .devkit/sample.dkrc
35
+ ~~~
35
36
36
37
With git (clean):
37
38
@@ -48,6 +49,7 @@ With git (clean):
48
49
A .gitignore
49
50
A script/README.md
50
51
A script/bootstrap
52
+ A script/build
51
53
A script/cibuild
52
54
A script/clean
53
55
A script/console
@@ -61,25 +63,28 @@ With git (clean):
61
63
62
64
With git (dirty):
63
65
66
+ ~~~ sh
64
67
$ .devkit/setup
65
68
Please commit or stash your changes before running setup
66
69
[65]
67
70
68
71
$ git commit -m " Added devkit"
69
72
[master (root-commit) * ] Added devkit (glob)
70
- 12 files changed, 93 insertions(+)
73
+ 13 files changed, 94 insertions(+)
71
74
create mode 100644 .dkrc
72
75
create mode 100644 .envrc
73
76
create mode 100644 .gitignore
74
77
create mode 100644 script/README.md
75
78
create mode 100755 script/bootstrap
79
+ create mode 120000 script/build
76
80
create mode 120000 script/cibuild
77
81
create mode 120000 script/clean
78
82
create mode 120000 script/console
79
83
create mode 120000 script/server
80
84
create mode 120000 script/setup
81
85
create mode 120000 script/test
82
86
create mode 120000 script/update
87
+ ~~~
83
88
84
89
With already existing files:
85
90
0 commit comments