Skip to content

Commit 84defe6

Browse files
committed
phrasing
1 parent 492b266 commit 84defe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/.github/workflows/publish.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
# Then try to install with retries to ensure it's actually available in the index
208208
for i in $(seq 1 12); do
209209
if pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://www.pypi.org/simple "${PKG}==${VER}" --no-cache-dir --quiet; then
210-
echo "Successfully installed ${PKG}==${VER}!"
210+
echo "Successfully installed ${PKG}==${VER}"
211211
exit 0
212212
fi
213213
echo "Package not yet installable; sleeping 10s... (attempt $i/12)"
@@ -348,7 +348,7 @@ jobs:
348348
# Then try to install with retries to ensure it's actually available in the index
349349
for i in $(seq 1 12); do
350350
if pip install --index-url https://pypi.org/simple/ "${PKG}==${VER}" --no-cache-dir --quiet; then
351-
echo "Successfully installed ${PKG}==${VER}!"
351+
echo "Successfully installed ${PKG}==${VER}"
352352
exit 0
353353
fi
354354
echo "Package not yet installable; sleeping 10s... (attempt $i/12)"

0 commit comments

Comments
 (0)