blob: 482e66eaa0215c72774ee8eec4e5ecbc52de4692 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
VERSION=`cat PORTABLE_VERSION | perl -ne 'chomp and print'`
BUILD=`cat PORTABLE_BUILD | perl -ne 'chomp and print'`
UPLOAD_URI=waker,deadbeef@frs.sourceforge.net:/home/frs/project/d/de/deadbeef/portable/$VERSION/
scp portable_out/* $UPLOAD_URI/
scp portable_out/build/* $UPLOAD_URI/
|