From dce1710a02f4c7ca86d584339bee968aa0a3fa4c Mon Sep 17 00:00:00 2001 From: Borrmann <43264484+2ndTaleStudio@users.noreply.github.com> Date: Fri, 13 Dec 2019 19:36:38 +0100 Subject: [PATCH] fix travis sed command --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 99e390f..70f2c72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ matrix: - rustup target add aarch64-unknown-linux-gnu - rustup component add rust-src - sudo chmod ugo+x build.sh - script: sed -i 's/path.*=.*\"\.{2}.*", version/version/g' Cargo.toml && ./build.sh 64 travis + script: sed -i 's/path.*=.*"\.\{2\}.*", version/version/g' Cargo.toml && ./build.sh 64 travis - name: "build 32Bit" install: @@ -30,7 +30,7 @@ matrix: - rustup component add rust-src - sudo chmod ugo+x build.sh # remove the path in the dependencies of the cargo file to ensure we use the version from crates.io - script: sed -i 's/path.*=.*\"\.{2}.*", version/version/g' Cargo.toml && ./build.sh 32 travis + script: sed -i 's/path.*=.*"\.\{2\}.*", version/version/g' Cargo.toml && ./build.sh 32 travis - name: "unit tests" - script: sed -i 's/path.*=.*\"\.{2}.*", version/version/g' Cargo.toml && cargo test --tests + script: sed -i 's/path.*=.*"\.\{2\}.*", version/version/g' Cargo.toml && cargo test --tests