Commit f311f190 authored by nimrod's avatar nimrod
Browse files

fixup! Select host in deploy script.

parent 4e427ea4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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