Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions odoo17_pro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ select_odoo_version() {
echo "2) Odoo 15.0"
echo "3) Odoo 16.0"
echo "4) Odoo 17.0"
echo "4) Odoo 18.0"
read -rp "Enter your choice (1-4): " choice

case $choice in
1) OE_BRANCH="14.0";;
2) OE_BRANCH="15.0";;
3) OE_BRANCH="16.0";;
4) OE_BRANCH="17.0";;
4) OE_BRANCH="18.0";;
*) echo "Invalid choice. Please enter a number between 1 and 4."; exit 1;;
esac
}
Expand Down