diff options
| author | antoyo <antoyo@users.noreply.github.com> | 2022-03-26 13:44:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-26 13:44:47 -0400 |
| commit | 14c33f592ae9ecd65c5f7f2436350e8489972a60 (patch) | |
| tree | d18428bdbf47b1d95d2a740925fa723ec67f4f88 | |
| parent | 39683d8eb7a32a74bea96ecbf1e87675d3338506 (diff) | |
| parent | 590bfc670a57973683d97eec104265a87363f418 (diff) | |
| download | rust-14c33f592ae9ecd65c5f7f2436350e8489972a60.tar.gz rust-14c33f592ae9ecd65c5f7f2436350e8489972a60.zip | |
Merge pull request #147 from bjorn3/misc_improvements
Don't pass --target in cargo.sh
| -rwxr-xr-x | cargo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cargo.sh b/cargo.sh index 332f365ce0c..e95564dccda 100755 --- a/cargo.sh +++ b/cargo.sh @@ -20,4 +20,4 @@ fi cmd=$1 shift -RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd --target $TARGET_TRIPLE $@ +RUSTDOCFLAGS="$RUSTFLAGS" cargo +${TOOLCHAIN} $cmd $@ |
