Skip to content

Commit

Permalink
Only if not CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nbolton committed Sep 26, 2024
1 parent b2b5b5b commit 5123892
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions scripts/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,16 @@ def main():
# but it seemed quite complex and potentially required upstream changes. This approach seems
# to be simpler and easier to maintain.
def setup_deskflow(install_deps):
subprocess.run(
[
"git",
"submodule",
"update",
"--init",
"--recursive",
]
)
if not os.getenv("CI"):
subprocess.run(
[
"git",
"submodule",
"update",
"--init",
"--recursive",
]
)

if install_deps:
current_dir = os.getcwd()
Expand Down

0 comments on commit 5123892

Please sign in to comment.