aboutsummaryrefslogtreecommitdiffstats
path: root/gen_docs.sh
diff options
context:
space:
mode:
authorVojta Jina2011-10-17 15:26:10 -0700
committerIgor Minar2011-10-18 22:23:52 -0700
commit8978e066b5f7fd0fac273b470b90fe4f9bef48c2 (patch)
tree7b84486a93227cddbb98b4bfd1c808874d199b54 /gen_docs.sh
parent833eb3c84445110dc1dad238120573f08ed8d102 (diff)
downloadangular.js-8978e066b5f7fd0fac273b470b90fe4f9bef48c2.tar.bz2
fix(gen-docs): require files without touching PATH
So that it works on latest revision of node... New version of Node (v0.5.x) does not support require.paths.push().
Diffstat (limited to 'gen_docs.sh')
-rwxr-xr-xgen_docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen_docs.sh b/gen_docs.sh
index 3c74339e..b14c49db 100755
--- a/gen_docs.sh
+++ b/gen_docs.sh
@@ -1,4 +1,4 @@
#!/bin/bash
if [ ! -e gen_docs.disable ]; then
- jasmine-node docs/spec -i docs/src -i lib --noColor && node docs/src/gen-docs.js
+ jasmine-node docs/spec --noColor && node docs/src/gen-docs.js
fi