Skip to content

Commit

Permalink
Merge pull request #2056 from isuruf/spaces
Browse files Browse the repository at this point in the history
Fix spaces in yum requirements
  • Loading branch information
hmaarrfk committed Sep 8, 2024
2 parents 6c186b0 + 779312a commit f7eb69b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions conda_smithy/configure_feedstock.py
Original file line number Diff line number Diff line change
Expand Up @@ -1373,10 +1373,7 @@ def generate_yum_requirements(forge_config, forge_dir):
# "recipe/yum_requirements.txt" file. After updating that file,
# run "conda smithy rerender" and this line will be updated
# automatically.
/usr/bin/sudo -n yum install -y {}
""".format(
/usr/bin/sudo -n yum install -y {}""".format(
" ".join(requirements)
)
)
Expand Down
2 changes: 1 addition & 1 deletion conda_smithy/templates/build_steps.sh.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}"
# => Set a lower limit in a subshell for the `yum install`s only.
ulimit -n 1024
{{ yum_build_setup }}
){% endif -%}
){%- endif %}

# make the build number clobber
make_build_number "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}"
Expand Down

0 comments on commit f7eb69b

Please sign in to comment.