Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated build_tools/conda_build.py so that can be used by repo outside cdat org #73

Merged
merged 1 commit into from
Jan 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build_tools/conda_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@

parser.add_argument("-p", "--package_name",
help="Package name to build")
parser.add_argument("-o", "--github_organization_name",
help="github organization name", default="CDAT")
parser.add_argument("-r", "--repo_name",
help="repo name to build")
parser.add_argument("-b", "--branch", default='master', help="branch to build")
Expand Down Expand Up @@ -97,7 +99,7 @@
print("XXX XXX XXX version: {v}".format(v=version))

# github organization of projects
organization = "CDAT"
organization = args.github_organization_name

# for calling run_cmds
join_stderr = True
Expand Down