#!/bin/sh
# Ollaya installer
#
# Ollaya has not been released yet. This placeholder only prints a notice and
# exits with an error, so scripts that pipe it to sh fail loudly instead of
# silently doing nothing.
#
# Source code and release updates: https://github.com/cobanov/ollaya

set -eu

cat >&2 <<'NOTICE'

  Ollaya has not been released yet.

  The first release is in progress. Star or watch the repository
  to hear when it ships:

    https://github.com/cobanov/ollaya

NOTICE

exit 1
