Skip to content

Commit

Permalink
fix: skip if we pass a user
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Nov 15, 2024
1 parent 2d10d36 commit e6d02f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_smithy/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def create_github_repo(args):
forge_config,
conda_forge_pinning_file=(
get_cached_cfp_file_path(".")
if args.organization == "conda-forge"
if args.user is None and args.organization == "conda-forge"
else None
),
)
Expand Down

0 comments on commit e6d02f2

Please sign in to comment.