Add nightly support
oginstaller/pipeline/head There was a failure building this commit Details

main
Nicolas Arenas 2025-04-14 12:44:17 +02:00
parent 59367aacaa
commit 7afae7db6d
1 changed files with 7 additions and 1 deletions

View File

@ -11,6 +11,10 @@ DEVEL=$1
if [ "$DEVEL" == "devel" ]; then
INSTALL_DEVEL=1
elif [ "$DEVEL" == "nightly" ]; then
INSTALL_NIGHTLY=1
else
INSTALL_STABLE=1
fi
install_packages() {
@ -48,7 +52,9 @@ create_questions() {
echo "Creating questions..."
if [ $INSTALL_DEVEL ] ; then
python3 /tmp/oginstall/oginstaller-v3.py devel
else
elif [ $INSTALL_NIGHTLY ] ; then
python3 /tmp/oginstall/oginstaller-v3.py nightly
else
python3 /tmp/oginstall/oginstaller-v3.py
fi
deactivate