Skip to content

Commit

Permalink
allow ibek to run in runtime stage without git
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Sep 21, 2023
1 parent d847de6 commit 2e35dac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ibek/support_cmds/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
from typing import List, Optional

import typer
from git import Repo

try:
from git import Repo
except ImportError:
print("Git Python is not needed for runtime ibek usage")

from typing_extensions import Annotated

from ibek.globals import EPICS_ROOT, IOC_DBDS, IOC_LIBS, RELEASE, RUNTIME_DEBS, SUPPORT
Expand Down

0 comments on commit 2e35dac

Please sign in to comment.