File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
.github/actions/dependencies Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments