Skip to content

Commit

Permalink
fix: remove extra space in ssh-keygen command
Browse files Browse the repository at this point in the history
  • Loading branch information
sralloza committed Jul 11, 2021
1 parent 7a37ccc commit 23dfde2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def install_docker(con: Connection):
def trust_github_ssh_keys(con: Connection):
con.run("ssh-keyscan github.com >> /tmp/githubKey")
con.run("cat /tmp/githubKey >> ~/.ssh/known_hosts")
con.run("ssh-keygen -t rsa -b 2048 -f ~/.ssh/id_rsa -N " "")
con.run('ssh-keygen -t rsa -b 2048 -f ~/.ssh/id_rsa -N ""')


def copy_docker_env_files(con: Connection):
Expand Down

0 comments on commit 23dfde2

Please sign in to comment.