We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc2a5c commit aafd8ceCopy full SHA for aafd8ce
1 file changed
.github/workflows/release.yml
@@ -30,6 +30,6 @@ jobs:
30
- uses: actions/checkout@v3
31
- name: Install
32
run: |
33
- PROJECT=$(shell python3 -c "from xkits_command.attribute import __project__; print(__project__)")
34
- VERSION=$(shell python3 -c "from xkits_command.attribute import __version__; print(__version__)")
+ PROJECT=$(python3 -c "from xkits_command.attribute import __project__; print(__project__)")
+ VERSION=$(python3 -c "from xkits_command.attribute import __version__; print(__version__)")
35
while true; do python -m pip install $PROJECT==$VERSION && break || sleep 5; done
0 commit comments