From 03850a9306f2eacfdfbe742cfc6d1db7e641ec13 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 4 Oct 2019 09:23:55 -0400 Subject: [PATCH] use scp instead of cp for easy deploy to server --- scripts/deploy_local.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy_local.sh b/scripts/deploy_local.sh index 02d79e8..7158eb3 100755 --- a/scripts/deploy_local.sh +++ b/scripts/deploy_local.sh @@ -6,5 +6,5 @@ echo "deploying to $1" mkdir -p $1 || exit mkdir -p bundle/ python3 scripts/assets.py stitch-sprites $SNEJ_ROOT/bundle/spritesheet -cp -r index.html main.js bundle/ $1 +scp -r index.html main.js bundle/ $1 echo "success!"