This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -u -e -o pipefail | |
#title : pyenv-poetry-test.sh | |
#description : A simple script which I wrote to discover what information Poetry is | |
# : relying on when it should use the virtualenv created by pyenv. | |
# : See https://github.com/python-poetry/poetry/issues/5956 | |
# : and https://github.com/pyenv/pyenv-virtualenv/issues/348 | |
#author : Simon Meggle, <[email protected]> | |
#date : 20220608 |