Skip to content

Commit 9a9e2e0

Browse files
committed
Auto merge of #1258 - gnzlbg:docs, r=gnzlbg
Re-enable debug output in dox.sh and remove unused variable in runtest
2 parents 6153363 + a423d87 commit 9a9e2e0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ci/dox.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ line=$(grep -n '<div class="platform_docs"></div>' $README | cut -d ":" -f 1)
3939

4040
set +x
4141
{ head -n "$((line-1))" $README; cat $PLATFORM_SUPPORT; tail -n "+$((line+1))" $README; } > $TARGET_DOC_DIR/$README
42+
set -x
4243

4344
# If we're on travis, not a PR, and on the right branch, publish!
4445
if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then

ci/runtest-android.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn main() {
3838
String::from_utf8_lossy(&output.stderr));
3939

4040
let stdout = String::from_utf8_lossy(&output.stdout);
41-
let passed = stdout.lines().find(|l|
41+
stdout.lines().find(|l|
4242
(l.starts_with("PASSED ") && l.contains(" tests")) ||
4343
l.starts_with("test result: ok")
4444
).unwrap_or_else(|| {

0 commit comments

Comments
 (0)