mu/mu

20 lines
453 B
Plaintext
Raw Normal View History

#!/bin/bash
# Run this from the mu directory.
#
# Wrapper to allow selectively running parts of the mu codebase/tests.
#
# Usage:
# mu [mu files]
# mu test [arc files]
2014-12-13 08:51:32 +00:00
#
# To actually mess with load levels, skip this script and call load.arc
# directly.
if [[ $1 == "test" ]]
then
shift
./anarki/arc load.arc "$@" # test currently assumed to be arc files rather than mu files
else
./anarki/arc load.arc mu.arc -- "$@" # mu files from args
fi