5 lines
234 B
Bash
5 lines
234 B
Bash
#!/bin/bash
|
|
VERSION=`cat info.rkt | grep version | sed -e 's/^[^0-9]*//' -e s'/[^0-9]*$//'`
|
|
echo VERSION=$VERSION
|
|
(cd ..; tar czf audio-manager-$VERSION.tar.gz --exclude .git --exclude "*.bak" --exclude "*.*~" audio-library-manager)
|