aboutsummaryrefslogtreecommitdiff
path: root/build_deploy.sh
blob: 80572d0aa3f2e7ba6aa1ba21e3d9b064c58cab4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

cd "$(dirname "$0")"

./build_repo.sh "$@"

deploy() {
	local TARGET="cynerd.cz:/var/www/myrepo"
	ssh cynerd.cz -- mkdir -p "/var/www/myrepo/$1" # Make sure that directory exists
	echo -e "\e[1;34mDeploy $1\e[0m"
	scp repo/$1/* $TARGET/$1/

	.$1-sdk/staging_dir/host/bin/usign -S -s key.sec -m $1.lua
	scp $1.lua $TARGET/$1.lua
	scp $1.lua.sig $TARGET/$1.lua.sig
	rm $1.lua.sig
}

[ ! -d repo/omnia ] || deploy omnia
[ ! -d repo/turris ] || deploy turris