From 5ec5ef8a40e368e02861d3c72f02a2ef137bee5a Mon Sep 17 00:00:00 2001
From: jo <ljonas@riseup.net>
Date: Tue, 17 Aug 2021 00:00:18 +0200
Subject: [PATCH] Fix CI python app installation

---
 .github/scripts/python-pkg-install.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/scripts/python-pkg-install.sh b/.github/scripts/python-pkg-install.sh
index e30b8ce84..063b2df46 100755
--- a/.github/scripts/python-pkg-install.sh
+++ b/.github/scripts/python-pkg-install.sh
@@ -2,9 +2,9 @@
 
 echo "::group::Install Python apps"
 for app in python_apps/*; do
-  if [[ -f "python_apps/$app/requirements-dev.txt" ]]; then
-    pip3 install -r "python_apps/$app/requirements-dev.txt"
+  if [[ -f "$app/requirements-dev.txt" ]]; then
+    pip3 install -r "$app/requirements-dev.txt"
   fi
-  pip3 install -e "python_apps/$app"
+  pip3 install -e "$app"
 done
 echo "::endgroup::"