#!/bin/sh

set -e

task="migrations"

if [ $# != 1 ] ; then
	echo >&2 "Usage $0 <source-file>"
	exit 1
fi

exec ioisubmit "${task}" "$1"
