Skip to content

Commit

Permalink
fix travis sed command
Browse files Browse the repository at this point in the history
  • Loading branch information
2ndTaleStudio committed Dec 13, 2019
1 parent 32df835 commit dce1710
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit dce1710

Please sign in to comment.