Skip to content

Commit 121cf9b

Browse files
authored
Merge pull request moneymeets#68 from moneymeets/feature/fix-export-plugin-installation
fix(compile): fix compatibility with older versions of poetry (moneymeets#67)
2 parents e50b23e + c35627c commit 121cf9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/compile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ if [ "${POETRY_VERSION:0:3}" = "1.2" ] ; then
5858
poetry config virtualenvs.create false | indent
5959
fi
6060

61-
# Plugin is needs to be installed explicitly in future versions of Poetry
61+
# Plugin needs to be installed explicitly in future versions of Poetry
6262
log "Install poetry-plugin-export"
63-
poetry self add poetry-plugin-export | indent
63+
poetry self add 'poetry-plugin-export@*' | indent
6464

6565
REQUIREMENTS_FILE="requirements.txt"
6666

0 commit comments

Comments
 (0)