connect-zui-store 294 B

123456789101112
  1. #!/usr/bin/env bash
  2. ZUI_STORE="${SNAP_COMMON}/zui-store"
  3. if [ ! -d "${ZUI_STORE}" ]; then
  4. echo "Missing store-dir for ZUI. Failed, exiting...." >&2
  5. exit 1
  6. fi
  7. if [ $(ls "${ZUI_STORE}" | wc -l) -eq 0 ]; then
  8. cpy_2_zui && sudo snap stop "${SNAP_NAME}" && sudo snap disable "${SNAP_NAME}"
  9. fi