#!/usr/bin/env python3

import subprocess
import sys

ch_image = sys.path[0] + "/ch-image"
rc = subprocess.call([ch_image] + sys.argv[1:])

print("""\


******************************************************************************

NOTE: This program is now called ch-image. We plan to remove the ch-grow name
in Charliecloud version 0.23.

******************************************************************************
""", end="", file=sys.stderr)

sys.exit(rc)
