From 6b2de1143d0ad400e8d3448f761c940c38a5e85b Mon Sep 17 00:00:00 2001 From: Razican Date: Sun, 9 Dec 2018 21:35:49 +0100 Subject: [PATCH] Added cargo path --- debian_build.sh | 4 +++- ubuntu_build.sh | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian_build.sh b/debian_build.sh index f83978344..8cc666e2e 100755 --- a/debian_build.sh +++ b/debian_build.sh @@ -1,6 +1,8 @@ #!/bin/bash -# Generate the .deb file +source ~/.cargo/env && cd /root/super && + +# Generate the .deb file cargo deb -v && mv target/debian/super-analyzer_`echo $TAG`_amd64.deb releases/super-analyzer_`echo $TAG`_debian_amd64.deb diff --git a/ubuntu_build.sh b/ubuntu_build.sh index 80dd9f5da..f6364d5da 100755 --- a/ubuntu_build.sh +++ b/ubuntu_build.sh @@ -1,6 +1,8 @@ #!/bin/bash -# Generate the .deb file +source ~/.cargo/env && cd /root/super && + +# Generate the .deb file cargo deb -v && mv target/debian/super-analyzer_`echo $TAG`_amd64.deb releases/super-analyzer_`echo $TAG`_ubuntu_amd64.deb