Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
thegreyd committed Nov 22, 2022
1 parent 57721c7 commit 60b3da9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -4,7 +4,7 @@ install:
./venv/bin/pip install -r requirements-dev.txt

venv:
python3 -m venv venv
python3.8 -m venv venv
./venv/bin/pip install -r requirements-dev.txt
# source venv/bin/activate

Expand Down
2 changes: 0 additions & 2 deletions doozerlib/cli/inspect_stream.py
@@ -1,9 +1,7 @@
import click
from pprint import pprint

from doozerlib.rhcos import RHCOSBuildInspector, RHCOSBuildFinder
from doozerlib.cli import cli
from doozerlib.util import brew_arches
from doozerlib.cli.release_gen_payload import PayloadGenerator
from doozerlib.assembly import AssemblyIssueCode
from doozerlib.assembly import AssemblyIssue
Expand Down
2 changes: 2 additions & 0 deletions doozerlib/rhcos.py
Expand Up @@ -134,6 +134,8 @@ def rhcos_release_url(self) -> str:

if self.runtime.group_config.urls.rhcos_release_base[bucket]:
return self.runtime.group_config.urls.rhcos_release_base[bucket]
elif self.runtime.group_config.urls.rhcos_release_base["multi"]:
return self.runtime.group_config.urls.rhcos_release_base["multi"]

bucket_suffix = brew_suffix_for_arch(self.brew_arch)
if self.custom:
Expand Down

0 comments on commit 60b3da9

Please sign in to comment.