Skip to content

Commit

Permalink
STAC-21039: Fix build os.getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
craffit committed May 13, 2024
1 parent ae796c7 commit fc8bc61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

# constants
DEFAULT_BRANCH = "master" # sts
GITHUB_ORG = os.environ['AGENT_GITHUB_ORG'] or "StackVista"
REPO_NAME = os.environ['AGENT_REPO_NAME'] or "stackstate-agent"
GITHUB_ORG = os.getenv('AGENT_GITHUB_ORG') or "StackVista"
REPO_NAME = os.getenv('AGENT_REPO_NAME') or "stackstate-agent"
GITHUB_REPO_NAME = f"{GITHUB_ORG}/{REPO_NAME}"
REPO_PATH = f"github.com/{GITHUB_REPO_NAME}"
ALLOWED_REPO_NON_NIGHTLY_BRANCHES = {"dev", "stable", "beta", "none"}
Expand Down

0 comments on commit fc8bc61

Please sign in to comment.