File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,13 @@ import: cram
5
5
import: entr-watch
6
6
import: shell-console
7
7
8
- # Auto-build dk and re-exec it if needed
9
- if [[ ! -x dk || dk.md -nt dk ]]; then
8
+ dk.rebuild () {
10
9
require-any bashpackr basher install bashup/bashpackr
11
10
bashpackr --pack dk.md dk
11
+ }
12
+
13
+ # Auto-build dk and re-exec it if needed
14
+ if [[ ! -x dk || dk.md -nt dk ]]; then
15
+ dk.rebuild; touch dk
12
16
exec " ./dk" " ${LOCO_ARGS[@]} "
13
17
fi
Original file line number Diff line number Diff line change 1
1
.deps
2
+ specs /* .cram.md.err
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ if ! [[ -f .dkrc ]]; then
6
6
fi
7
7
8
8
if ! [[ -d .devkit ]]; then
9
+ # Modify this line if you want to pin a particular .devkit revision:
9
10
git clone -q --depth 1 https://github.com/bashup/.devkit
10
11
fi
11
12
You can’t perform that action at this time.
0 commit comments