about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-05-06 23:25:01 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2020-05-08 22:59:50 +0200
commitf236714d65baa74404e5e25a24b6208134971752 (patch)
treea5b9a87faa9281cfa0596d1681fecd2b66f9d756 /pkgs
parente32c005772c9f820780453628eb9b7cd9a51223e (diff)
downloadnixlib-f236714d65baa74404e5e25a24b6208134971752.tar
nixlib-f236714d65baa74404e5e25a24b6208134971752.tar.gz
nixlib-f236714d65baa74404e5e25a24b6208134971752.tar.bz2
nixlib-f236714d65baa74404e5e25a24b6208134971752.tar.lz
nixlib-f236714d65baa74404e5e25a24b6208134971752.tar.xz
nixlib-f236714d65baa74404e5e25a24b6208134971752.tar.zst
nixlib-f236714d65baa74404e5e25a24b6208134971752.zip
rustPlatform: fix log
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/build-support/rust/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix
index 9f11919974a8..b7d19ccd4a0a 100644
--- a/pkgs/build-support/rust/default.nix
+++ b/pkgs/build-support/rust/default.nix
@@ -180,7 +180,7 @@ stdenv.mkDerivation (args // {
     argstr = "${stdenv.lib.optionalString (buildType == "release") "--release"} --target ${rustTarget} --frozen";
   in ''
     runHook preCheck
-    echo "Running cargo cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
+    echo "Running cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
     cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
     runHook postCheck
   '');