Skip to content
Merged
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
7 changes: 7 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4210,6 +4210,13 @@ main() {
confirm_step "Disable on-demand MCPs globally" && disable_ondemand_mcps
fi

# Refresh version cache so session greeting shows correct version
# This ensures `setup.sh` alone (without `aidevops update`) updates the cached version
local update_check_script="$HOME/.aidevops/agents/scripts/aidevops-update-check.sh"
if [[ -x "$update_check_script" ]]; then
"$update_check_script" > /dev/null 2>&1 || true
fi

echo ""
print_success "🎉 Setup complete!"
echo ""
Expand Down