mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-05 06:32:11 +08:00
16 lines
316 B
Bash
Executable file
16 lines
316 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export HHBZRMSG="Enter first item auto-select, Vim keybinding, doc improvements."
|
|
export VERSION=1.15.
|
|
export MINOR=3
|
|
|
|
# precise quantal saucy / precise trusty utopic
|
|
for DISTRO in trusty utopic
|
|
do
|
|
|
|
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
|
|
MINOR=`expr $MINOR + 1`
|
|
|
|
done
|
|
|
|
# eof
|