#!/bin/sh
# vim: set sts=4 expandtab:
# Copyright (C) 2026 Osamu Aoki <osamu@debian.org>
IM_CONFIG_ENTRY="autopkgtest"
export IM_CONFIG_ENTRY
if sh -e -c im-launch; then
    echo "im-launch does 'exec true'"
    exit 0
else
    echo "ERROR"
    exit 1
fi
