Skip to content

Commit e479dca

Browse files
oilcan-productionsLars Brinkhoff
authored and
Lars Brinkhoff
committed
Update deploy-ftp.sh
Adding the line that generates the tar files during build since we are not calling the SSH script right now.
1 parent db199cb commit e479dca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/deploy-ftp.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ echo "login $USER" >> "$NETRC"
1717
echo "password $FTP_SECRET" >> "$NETRC"
1818
chmod 600 "$NETRC"
1919

20-
echo "Deploying to $USER@$HOST"
20+
(cd out; tar czf $EMULATOR.tgz $EMULATOR)
21+
22+
echo "Deploying as $USER at $HOST"
2123

2224
ftp "$HOST" <<EOF
25+
passive
2326
type image
2427
cd $DIR
2528
lcd out

0 commit comments

Comments
 (0)