Skip to content

Commit d8f2516

Browse files
committed
Fix a stupid mistake of cding into the wrong folder
1 parent c3e0308 commit d8f2516

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ html-highlights: bigpage
77
perl6 htmlify.p6 --parallel=1 --use-highlights
88

99
init-highlights:
10-
git clone https://github.com/atom/highlights.git ./highlights/highlights
11-
git clone https://github.com/perl6/atom-language-perl6 ./highlights/atom-language-perl6
12-
cd highlights/highlights; npm install .
10+
git clone https://github.com/atom/highlights.git ./highlights/highlights || cd highlights/highlights; git pull
11+
git clone https://github.com/perl6/atom-language-perl6 ./highlights/atom-language-perl6 || cd highlights/highlights; git pull
12+
cd highlights; npm install .
1313

1414
html-nohighlight:
1515
perl6 htmlify.p6 --no-highlight

highlights/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"homepage": "https://github.com/samcv/perl6-highlights",
1212
"dependencies": {
1313
"highlights": "latest",
14-
"less": "latest",
14+
"less": "latest"
1515
}
1616
}

0 commit comments

Comments
 (0)