Skip to content

Commit

Permalink
Merge pull request #73 from CDAT/update_build_tools
Browse files Browse the repository at this point in the history
updated build_tools/conda_build.py so that can be used by repo outside cdat org
  • Loading branch information
muryanto1 authored Jan 22, 2020
2 parents f0011b1 + 7dbf65c commit e934bad
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit e934bad

Please sign in to comment.