colout/bin/colout
Martin Ueding 177c11fd9a Add launcher script
I tried to package this program in Ubuntu, and found that it has no
startup script. So I added a `colout` script that gets installed into
the scripts directory with the `setup.py`.
2013-04-28 15:53:00 +02:00

11 lines
179 B
Bash

#!/bin/bash
# Copyright © 2013 Martin Ueding <dev@martin-ueding.de>
# Small launcher script for the main module.
# Licence: GPL 3+
set -e
set -u
python -m colout.colout "$@"