You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2019/01/08 03:14:21 UTC

[arrow] branch master updated: ARROW-4185: [Rust] Change directory before running Rust examples on Windows

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new a1ea48b  ARROW-4185: [Rust] Change directory before running Rust examples on Windows
a1ea48b is described below

commit a1ea48b51982e9ac13b28728edf8e009527eea2e
Author: Andy Grove <an...@gmail.com>
AuthorDate: Mon Jan 7 20:14:13 2019 -0700

    ARROW-4185: [Rust] Change directory before running Rust examples on Windows
    
    Author: Andy Grove <an...@gmail.com>
    
    Closes #3341 from andygrove/ARROW-4185 and squashes the following commits:
    
    c9fa73e <Andy Grove> Change directory before running Rust examples
---
 ci/rust-build-main.bat | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/rust-build-main.bat b/ci/rust-build-main.bat
index 6ef4512..ac5c9e7 100644
--- a/ci/rust-build-main.bat
+++ b/ci/rust-build-main.bat
@@ -36,6 +36,7 @@ cargo test --target %TARGET% --release || exit /B
 @echo
 @echo Run example (release)
 @echo ---------------------
+cd arrow
 cargo run --example builders --target %TARGET% --release || exit /B
 cargo run --example dynamic_types --target %TARGET% --release || exit /B
 cargo run --example read_csv --target %TARGET% --release || exit /B