mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-09 14:51:24 +00:00
18 lines
358 B
Bash
18 lines
358 B
Bash
#!/bin/bash
|
|
#git branch -D r10-beta
|
|
TOSET="$1"
|
|
|
|
if [ -z "$TOSET" ]; then
|
|
echo "empty version"
|
|
exit 12
|
|
fi
|
|
|
|
git branch -D r10-beta
|
|
git checkout -b r10-beta
|
|
sed -i "/^VERSION/ s/10-lh/$TOSET/g" rocky/variables.conf
|
|
sed -i "s/r10s/r10-beta/g" rocky/variables.conf
|
|
git add -A
|
|
git commit -m "Set to $TOSET and prep"
|
|
|
|
echo "Use git push -f to push to r10-beta"
|