Browse Source

Fix bashism (?) in doc.sh that fails on Travis CI.

Simon Sapin 12 years ago
parent
commit
94c8757751
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc.sh

+ 1 - 1
doc.sh

@@ -1,3 +1,3 @@
 #!/bin/sh
-LIB=(target/liburl*)
+LIB=$(echo target/liburl*)
 rustdoc src/lib.rs -L target/deps -L target --extern url=$LIB "$@"