diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-02-26 20:21:52 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-02-26 20:21:52 -0800 |
commit | a88839dafb606f07e71e063981bce3302c6031d3 (patch) | |
tree | 886ff8d7951b6ccff557d2d5b056156ec408cfa1 /build_upload_nightly | |
parent | 0404555ebdbc0153de3f658913ea1ff332241140 (diff) |
Use public key auth rather than trying to make passowrd auth work in a script
Diffstat (limited to 'build_upload_nightly')
-rwxr-xr-x | build_upload_nightly | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_upload_nightly b/build_upload_nightly index a7111c1..f5f21cb 100755 --- a/build_upload_nightly +++ b/build_upload_nightly @@ -16,4 +16,4 @@ fi lxc-stop -n "$CONTAINER_NAME" . $HOME/remote.params artifact=$(tail -n 1 /tmp/build_${name}_out.log) -echo $REMOTE_PASS | scp "$HOME/.local/share/lxc/$CONTAINER_NAME/rootfs/home/$BUILD_USER/blastem/$artifact" $REMOTE_USER@$REMOTE_HOST:/home/$REMOTE_USER/nightlies +scp -i "$REMOTE_IDENT" "$HOME/.local/share/lxc/$CONTAINER_NAME/rootfs/home/$BUILD_USER/blastem/$artifact" $REMOTE_USER@$REMOTE_HOST:/home/$REMOTE_USER/nightlies |