Skip to content

Commit aaaec51

Browse files
committed
Fix typo in issue responder artifact listing
1 parent 6e635a9 commit aaaec51

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/bioconda-recipes-issue-responder.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717
env:
1818
IMAGE_NAME: bioconda-recipes-issue-responder
19-
IMAGE_VERSION: '1.0.2'
19+
IMAGE_VERSION: '1.0.3'
2020

2121
steps:
2222
- uses: actions/checkout@v2

images/bioconda-recipes-issue-responder/issue-responder

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ async def make_artifact_comment(session: ClientSession, pr: int, sha: str) -> No
141141
elif subdir == "linux-64":
142142
comment += "linux-64 |"
143143
install_linux = (
144-
"```\nconda install -c f{conda_install_url} <package name>\n```\n"
144+
f"```\nconda install -c {conda_install_url} <package name>\n```\n"
145145
)
146146
else:
147147
comment += "osx-64 |"
148-
install_osx = "```\nconda install -c f{conda_install_url} <package name>\n```\n"
148+
install_osx = f"```\nconda install -c {conda_install_url} <package name>\n```\n"
149149
comment += f" [{packageName}]({url}) | [repodata.json]({repo_url})\n"
150150

151151
# Conda install examples

0 commit comments

Comments
 (0)