hw-rollerderby-scoreboard/release.sh

10 lines
155 B
Bash
Raw Normal View History

2014-02-02 17:05:14 -07:00
#! /bin/sh -e
2014-02-02 16:58:54 -07:00
2014-02-02 17:05:14 -07:00
version=$(git describe --tags --exact-match)
2014-02-02 16:58:54 -07:00
make all
mkdir -p bin
for i in *.hex; do
2014-02-02 17:05:14 -07:00
cp $i bin/scoreboard-$version-${i#scoreboard-}
2014-02-02 16:58:54 -07:00
done