diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-25 16:39:37 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-25 16:50:23 +0200 |
commit | d1658fd1860d3dd60a3c41ed22b05bd4de8c708f (patch) | |
tree | b683ea51c07a9e2e946a15e10bc40473e3ab6c19 | |
parent | dde9a518c068fc0d463cf4feefa4612036654f70 (diff) | |
download | genpass-d1658fd1860d3dd60a3c41ed22b05bd4de8c708f.tar.gz genpass-d1658fd1860d3dd60a3c41ed22b05bd4de8c708f.tar.bz2 genpass-d1658fd1860d3dd60a3c41ed22b05bd4de8c708f.zip |
fix: Remove sudo
-rw-r--r-- | .build.yml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -14,13 +14,15 @@ environment: tasks: - rustup: | - export PATH="$PATH:$HOME/.cargo/bin" - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh -s -- --profile minimal --quiet -y + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --quiet -y + source $HOME/.cargo/env curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh - test: | + source $HOME/.cargo/env cd genpass make test - deploy: | + source $HOME/.cargo/env cd genpass make sshopts="ssh -o StrictHostKeyChecking=no" |