Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a stupid mistake of cding into the wrong folder
  • Loading branch information
samcv committed Dec 19, 2016
1 parent c3e0308 commit d8f2516
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -7,9 +7,9 @@ html-highlights: bigpage
perl6 htmlify.p6 --parallel=1 --use-highlights

init-highlights:
git clone https://github.com/atom/highlights.git ./highlights/highlights
git clone https://github.com/perl6/atom-language-perl6 ./highlights/atom-language-perl6
cd highlights/highlights; npm install .
git clone https://github.com/atom/highlights.git ./highlights/highlights || cd highlights/highlights; git pull
git clone https://github.com/perl6/atom-language-perl6 ./highlights/atom-language-perl6 || cd highlights/highlights; git pull
cd highlights; npm install .

html-nohighlight:
perl6 htmlify.p6 --no-highlight
Expand Down
2 changes: 1 addition & 1 deletion highlights/package.json
Expand Up @@ -11,6 +11,6 @@
"homepage": "https://github.com/samcv/perl6-highlights",
"dependencies": {
"highlights": "latest",
"less": "latest",
"less": "latest"
}
}

0 comments on commit d8f2516

Please sign in to comment.