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 7876c0b commit c25c9c4Copy full SHA for c25c9c4
.circleci/config.yml
@@ -336,7 +336,7 @@ commands:
336
curl -sSL https://install.python-poetry.org | python3 -
337
export PATH="/root/.local/bin:$PATH"
338
poetry install -vvv
339
- RUN_TEMPLATE=$(cat \<<END_RUNFILE
+ RUN_TEMPLATE=$(cat <<END_RUNFILE
340
#!/usr/bin/env python
341
# -*- coding: utf-8 -*-
342
import re
@@ -345,10 +345,10 @@ commands:
345
346
if __name__ == "__main__":
347
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
348
- sys.exit(main())
+ sys.exit(main())
349
END_RUNFILE
350
)
351
- echo "RUN_TEMPLATE" > run.py
+ echo "$RUN_TEMPLATE" > run.py
352
chmod +x run.py
353
ln -s run.py /usr/local/bin/benchmark-admin
354
cd ..
0 commit comments