From ea31cc745e9603620893e2811d639954778847e2 Mon Sep 17 00:00:00 2001 From: Stephen Stubbs Date: Sat, 4 Jan 2020 18:19:13 +0400 Subject: [PATCH] fix install to use new path and cp to work correctly. Signed-off-by: Stephen Stubbs --- packs/rust/pipeline.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packs/rust/pipeline.yaml b/packs/rust/pipeline.yaml index b95402c..5a9bccd 100644 --- a/packs/rust/pipeline.yaml +++ b/packs/rust/pipeline.yaml @@ -9,9 +9,9 @@ pipelines: steps: - sh: rustup override set nightly name: rustup - - sh: cargo install + - sh: cargo install --path . --root ~/apps name: cargo-install - - sh: cp ~/.cargo/bin/REPLACE_ME_APP_NAME . + - sh: cp ~/apps/bin/* . name: copy-bin release: setVersion: @@ -26,7 +26,7 @@ pipelines: steps: - sh: rustup override set nightly name: rustup - - sh: cargo install + - sh: cargo install --path . --root ~/apps name: cargo-install - - sh: cp ~/.cargo/bin/REPLACE_ME_APP_NAME . + - sh: cp ~/apps/bin/* . name: copy-bin