From 325e49b4a7420133e446bd873e94555f9e9cd9b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 2 Feb 2018 00:19:40 +0100 Subject: Add build_deploy.sh This is replacement for now more generalized build_repo.sh --- build_deploy.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 build_deploy.sh (limited to 'build_deploy.sh') diff --git a/build_deploy.sh b/build_deploy.sh new file mode 100755 index 0000000..80572d0 --- /dev/null +++ b/build_deploy.sh @@ -0,0 +1,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 -- cgit v1.2.3