about summary refs log blame commit diff stats
path: root/mu
blob: e2731406607b6d3fc414330016ec72e0c41749da (plain) (tree)
1
2
3
4
5
6
7
8







                                                                      


                                                                       







                                                                                           
#!/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]
#
# 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