From 1e831effac4c601b2309a6467b05979f59acb295 Mon Sep 17 00:00:00 2001 From: luck0r <67522404+luck0r@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:58:45 +0000 Subject: [PATCH] Update postinstall.yml adapted to .venv instead of .env --- tasks/postinstall.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/postinstall.yml b/tasks/postinstall.yml index 4ee51f7..e3765e6 100644 --- a/tasks/postinstall.yml +++ b/tasks/postinstall.yml @@ -2,9 +2,9 @@ - name: 'get current freqtrade version' - shell: /bin/bash -ic 'source .env/bin/activate; python3 -m freqtrade --version' + shell: /bin/bash -ic 'source .venv/bin/activate; python3 -m freqtrade --version' register: freqtrade_version args: chdir: "{{ freqtrade_installation_directory }}" -- debug: var=freqtrade_version.stdout \ No newline at end of file +- debug: var=freqtrade_version.stdout