From e479dca69addef5b4403a0412eacbd28042a5a58 Mon Sep 17 00:00:00 2001 From: "Mike Kostersitz (Oilcan Productions)" <77457397+oilcan-productions@users.noreply.github.com> Date: Mon, 6 Mar 2023 13:49:37 -0800 Subject: [PATCH] Update deploy-ftp.sh Adding the line that generates the tar files during build since we are not calling the SSH script right now. --- build/deploy-ftp.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/deploy-ftp.sh b/build/deploy-ftp.sh index 874d7ad8a..446161035 100644 --- a/build/deploy-ftp.sh +++ b/build/deploy-ftp.sh @@ -17,9 +17,12 @@ echo "login $USER" >> "$NETRC" echo "password $FTP_SECRET" >> "$NETRC" chmod 600 "$NETRC" -echo "Deploying to $USER@$HOST" +(cd out; tar czf $EMULATOR.tgz $EMULATOR) + +echo "Deploying as $USER at $HOST" ftp "$HOST" <