commit | ed8716e3d02ea0f152d634095f1c205e834cbf9f | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Mon Dec 25 21:49:39 2017 -0500 |
committer | David Tolnay <dtolnay@gmail.com> | Mon Dec 25 21:49:47 2017 -0500 |
tree | e34b071ce62166bece268d42ae187b840c41bba6 | |
parent | ecce832e34318c2e55fb1dc5ce48829934a49df9 [diff] [blame] |
Move clone.sh out of tests/rust To avoid spurious diffs in Travis from the cached tests/rust directory.
diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 7dbbeec..80f8db1 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs
@@ -116,7 +116,7 @@ } pub fn clone_rust() { - let result = Command::new("tests/rust/clone.sh").status().unwrap(); + let result = Command::new("tests/clone.sh").status().unwrap(); println!("result: {}", result); assert!(result.success()); }