view more/test.sh @ 1239:da970a892641

Helps to get the version numbers right in the release message. (It was pending for a while, things moved while writing up the release notes rather a lot.)
author Rob Landley <rob@landley.net>
date Mon, 06 Sep 2010 00:57:38 -0500
parents 300e6d919d86
children 3e7bf55b1bfb
line wrap: on
line source

#!/bin/bash

# Run a command with sources/include.sh and an architecture loaded

if [ $# -eq 0 ]
then
  echo "Usage: test.sh ARCH COMMAND..." >&2
  echo "You generally want to set STAGE_NAME= too."
  exit 1
fi

. sources/include.sh || exit 1

read_arch_dir "$1"
shift
eval "$@"