##// END OF EJS Templates
rhg: use a release-mode executable in tests...
Simon Sapin -
r46845:e73b40c7 default
parent child Browse files
Show More
@@ -2,8 +2,8 b''
2 2
3 3 Define an rhg function that will only run if rhg exists
4 4 $ rhg() {
5 > if [ -f "$RUNTESTDIR/../rust/target/debug/rhg" ]; then
6 > "$RUNTESTDIR/../rust/target/debug/rhg" "$@"
5 > if [ -f "$RUNTESTDIR/../rust/target/release/rhg" ]; then
6 > "$RUNTESTDIR/../rust/target/release/rhg" "$@"
7 7 > else
8 8 > echo "skipped: Cannot find rhg. Try to run cargo build in rust/rhg."
9 9 > exit 80
General Comments 0
You need to be logged in to leave comments. Login now