#!/usr/bin/env bash

# Unoffical Bash "strict mode"
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
set -euo pipefail
#ORIGINAL_IFS=$IFS
IFS=$'\t\n' # Stricter IFS settings

# shellcheck source=bin/utils.sh
source "$(dirname "$0")/utils.sh"

list_all() {
    ensure_kerl_setup

    "$(kerl_path)" list releases | sed -e 's:Run.*::' | tr '\n' ' '
}

list_all
