From b4bd7a27439d8e1b7789992c019ab83ba40ab63c Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Mon, 1 Jul 2019 22:39:24 +0300 Subject: [PATCH] Fix parameter order --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13372aa..b3a7fec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,5 +32,5 @@ script: - cargo test --all --verbose --manifest-path imgui-examples/Cargo.toml - cargo build --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml - cargo test --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml - - if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo build --all --verbose --manifest-path --no-default-features --features directx imgui-gfx-examples/Cargo.toml; fi - - if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo test --all --verbose --manifest-path --no-default-features --features directx imgui-gfx-examples/Cargo.toml; fi + - if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo build --all --verbose --no-default-features --features directx --manifest-path imgui-gfx-examples/Cargo.toml; fi + - if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo test --all --verbose --no-default-features --features directx --manifest-path imgui-gfx-examples/Cargo.toml; fi