From e5bd121671a7db96e3bbe4486d9b8a8c5e1459de Mon Sep 17 00:00:00 2001 From: BradBot_1 Date: Thu, 23 Feb 2023 20:08:38 +0000 Subject: [PATCH] Remove unneeded call to bash --- start.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/start.sh b/start.sh index 0cd4f55..71c859d 100644 --- a/start.sh +++ b/start.sh @@ -3,13 +3,11 @@ if ! [ -f "/root/.ssh/id_rsa.pub" ]; then echo "No key found, creating a new one!" ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -P "" - chmod 700 /~/.ssh/id_rsa - chmod 700 /~/.ssh/id_rsa.pub + chmod 700 ~/.ssh/id_rsa + chmod 700 ~/.ssh/id_rsa.pub echo " IdentityFile ~/.ssh/id_rsa" >> /etc/ssh/ssh_config echo "Your new public key for this instance:" cat ~/.ssh/id_rsa.pub fi -npm run start - -/bin/sh \ No newline at end of file +npm run start \ No newline at end of file