Skip to content

Commit

Permalink
Merge pull request #364 from nix-community/fix-repo-config
Browse files Browse the repository at this point in the history
Fix repository configuration not being recognized
  • Loading branch information
Mic92 authored Jan 1, 2025
2 parents f757546 + 7c6d841 commit 5ec90fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot_nix/buildbot_nix/repo_config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def extract_during_step(cls, buildstep: BuildStepShellMixin) -> Self:
command=[
"sh",
"-c",
"if [ -f buildbot-nix.toml ] then; then cat buildbot-nix.toml; fi",
"if [ -f buildbot-nix.toml ]; then cat buildbot-nix.toml; fi",
],
)
await buildstep.runCommand(cmd)
Expand Down

0 comments on commit 5ec90fe

Please sign in to comment.