Skip to content

Commit

Permalink
chore(.travis.yml): fix lean path for generating js/completion.js
Browse files Browse the repository at this point in the history
  • Loading branch information
soonhokong committed May 20, 2016
1 parent 10f379c commit 4d232ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ script:
- EMACS_BIN=emacs make
# Build completion.js
- echo "var completions = [" > js/completion.js
- lean --server < js/completion_input.in | grep "|" | grep -v "^private\." | sort | uniq | sed -e "s/\([^|]\+\)|\(.\+\)/{name:\"\1\", value:\"\1\", meta:\"\2\"},/" >> js/completion.js
- ./lean/bin/lean --server < js/completion_input.in | grep "|" | grep -v "^private\." | sort | uniq | sed -e "s/\([^|]\+\)|\(.\+\)/{name:\"\1\", value:\"\1\", meta:\"\2\"},/" >> js/completion.js
- echo "]" >> js/completion.js
# Build input-method.js
- cask exec emacs --no-site-file --no-site-lisp -q --batch -l ./elisp/org-html-export.el -l ./lean/src/emacs/lean-input.el -f lean-input-export-translations-to-stdout > js/input-method.js
Expand Down

0 comments on commit 4d232ec

Please sign in to comment.