#!/bin/sh
set -eu

if [ "${1:-}" = "--version" ]; then
  printf '%s\n' '1.18.1'
  exit 0
fi
exit 64
