Skip to content

Commit

Permalink
Correct test target file path in iOS CI (tokio-rs#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
iquiw authored and carllerche committed Jul 26, 2017
1 parent b6dde86 commit b276244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/run-ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ case "$TARGET" in


# Find the file to run
TEST_FILE="$(find target/$TARGET/debug -maxdepth 1 -type f -name test-* | head -1)";
TEST_FILE="$(find $TARGET/debug -maxdepth 1 -type f -name test-* | head -1)";

rustc -O ./ci/ios/deploy_and_run_on_ios_simulator.rs;
./deploy_and_run_on_ios_simulator $TEST_FILE;
Expand Down

0 comments on commit b276244

Please sign in to comment.