mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-06 23:18:27 +08:00
17 lines
284 B
Bash
17 lines
284 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export HHBZRMSG="Favorites stabilization: deletion, reordering and highlighting."
|
||
|
export VERSION=1.11.
|
||
|
export MINOR=1
|
||
|
|
||
|
for DISTRO in precise quantal saucy trusty
|
||
|
do
|
||
|
|
||
|
MINOR=`expr $MINOR + 1`
|
||
|
|
||
|
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
|
||
|
|
||
|
done
|
||
|
|
||
|
# eof
|