You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
311 B
16 lines
311 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export DATE=$(date +%Y%m%d)
|
|
TARGETS='el6 el7 el7_ec2 suse deb deb_ec2 alpine iso'
|
|
|
|
for TARGET in $TARGETS; do
|
|
TARGET="${TARGET}" ./generate.sh
|
|
done
|
|
|
|
echo
|
|
echo "The packages are here:"
|
|
echo "--------------------------------------------------------------------------------"
|
|
find out -type f
|