From de8c681440c251b58c4c8c2018dc5f637b3f30f5 Mon Sep 17 00:00:00 2001 From: Nulo Date: Sun, 14 Aug 2022 09:43:34 +0200 Subject: [PATCH] Makefile: Usar sintaxis de ssh normal --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e3ea4b9..0dc7f6e 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,6 @@ nft.nulo.in: CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' . upload: nft.nulo.in - ssh root@nulo.in/993 sv stop nftmashin + ssh -p993 root@nulo.in sv stop nftmashin scp -r -P993 nft.nulo.in templates assets nftmashin@nulo.in:/home/nftmashin/ - ssh root@nulo.in/993 sv start nftmashin + ssh -p993 root@nulo.in sv start nftmashin