mirror of
https://github.com/tcgdex/compiler.git
synced 2025-04-22 10:42:09 +00:00
7 lines
127 B
Bash
Executable File
7 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
sshpass -p $UPLOAD_PASSWORD sftp -vvv $UPLOAD_USERNAME@$UPLOAD_REMOTE <<EOF
|
|
cd net/tcgdex/api
|
|
put -r dist/*
|
|
exit
|
|
EOF
|