Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ tmp/
.gemini/
GEMINI.md
AGENTS.md

# --- Temp macOS files
.DS_Store
6 changes: 5 additions & 1 deletion odev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
# Run odev using the virtualenv if available, otherwise fallback to system python3
# for compatibility with older running installations of odev.

resolve_path() {
realpath "$1" 2>/dev/null || readlink -f "$1"
}

for interpreter in ~/.config/odev/venv/bin/python3 /usr/bin/python3; do
if [ -x "$interpreter" ]; then
SCRIPT_PATH=$(readlink -f "$0")
SCRIPT_PATH=$(resolve_path "$0")
exec "$interpreter" "$(dirname "$SCRIPT_PATH")/main.py" "$@"
exit $?
fi
Expand Down
2 changes: 1 addition & 1 deletion odev/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# or merged change.
# ------------------------------------------------------------------------------

__version__ = "4.29.4"
__version__ = "4.29.5"

Check notice on line 25 in odev/_version.py

View workflow job for this annotation

GitHub Actions / version-bump

Patch Update
Loading