Deploy new snap on release

This commit is contained in:
Pierre Ossman
2020-06-26 14:12:37 +02:00
parent fe2ad57077
commit 244c02c5ea
3 changed files with 31 additions and 7 deletions

View File

@@ -24,6 +24,6 @@ snapctl get services | jq -c '.[]' | while read service; do # for each service t
echo "novnc: not starting service ${service} with listen_port ${listen_port} and vnc_host_port ${vnc_host_port}"
else
# start (and fork with '&') the service using the specified listen port and VNC host:port
$SNAP/utils/launch.sh --listen $listen_port --vnc $vnc_host_port &
$SNAP/launch.sh --listen $listen_port --vnc $vnc_host_port &
fi
done