From ce49034bbbb0837630438fa2037a074c4b73f0ac Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 28 Jul 2023 13:45:40 +0100 Subject: [PATCH] bin/ci/gitlab_gql: use venv wrapper Signed-off-by: Eric Engestrom Part-of: --- bin/ci/gitlab_gql.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 bin/ci/gitlab_gql.sh diff --git a/bin/ci/gitlab_gql.sh b/bin/ci/gitlab_gql.sh new file mode 100755 index 0000000..3d2767c --- /dev/null +++ b/bin/ci/gitlab_gql.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu + +this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")") +readonly this_dir + +exec \ + "$this_dir/../python-venv.sh" \ + "$this_dir/requirements.txt" \ + "$this_dir/gitlab_gql.py" "$@" -- 2.7.4