Skip to content

Commit d22b8cb

Browse files
committed
Use OS-specific remotes
1 parent a2e86dd commit d22b8cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/dependencies/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ runs:
2121
if conan remote list | grep -q "recipes"; then
2222
conan remote update recipes --index 0 --url ${CONAN_URL}/recipes
2323
echo "Updated Conan remote 'recipes' to ${CONAN_URL}/recipes."
24-
elif
24+
else
2525
conan remote add --index 0 recipes ${CONAN_URL}/recipes
2626
echo "Added new conan remote 'recipes' at ${CONAN_URL}/recipes."
2727
fi
2828
echo "Adding Conan remotes for packages."
2929
if conan remote list | grep -q "${{ inputs.remote_name }}"; then
3030
conan remote update ${{ inputs.remote_name }} --index 1 --url ${CONAN_URL}/${{ inputs.remote_name }}
3131
echo "Updated Conan remote '${{ inputs.remote_name }}' to ${CONAN_URL}/${{ inputs.remote_name }}."
32-
elif
32+
else
3333
conan remote add --index 1 ${{ inputs.remote_name }} ${CONAN_URL}/${{ inputs.remote_name }}
3434
echo "Added new conan remote '${{ inputs.remote_name }}' at ${CONAN_URL}/${{ inputs.remote_name }}."
3535
fi

0 commit comments

Comments
 (0)