From f311f1900911eb0f9df5af978c64870fa92dd797 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 10 Jan 2021 20:40:54 +0200
Subject: [PATCH] fixup! Select host in deploy script.

---
 deploy | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/deploy b/deploy
index 79e4be3..f2b71c6 100755
--- a/deploy
+++ b/deploy
@@ -28,16 +28,16 @@ fi
 case "${1:-all}" in
     ns4) export REGISTER_RUN_UNTAGGED="true"
         export BUILDS='/builds'
-        _deploy ns4
+        _deploy ns4.shore.co.il
         ;;
     kodi) export REGISTER_RUN_UNTAGGED="false"
         unset BUILDS
-        _deploy kodi
+        _deploy kodi.shore.co.il
         ;;
     host01) export REGISTER_RUN_UNTAGGED="false"
         unset BUILDS
-        _deploy host01
+        _deploy host01.shore.co.il
         ;;
-    all) deploy ns4; deploy host01; deploy kodi ;;
+    all) "$0" ns4; "$0" host01; "$0" kodi ;;
     *) echo 'Unknown host.' >&2; exit 1;;
 esac
-- 
GitLab