From 91fad348be3f87073cc9a7780777a35f98a3ade9 Mon Sep 17 00:00:00 2001 From: Patrick Tannoury Date: Sat, 22 Aug 2026 13:46:41 +0200 Subject: [PATCH] chore: remove the unused bin/install script bin/install wrapped 'pip install -e .' behind a python3 availability check. Nothing invoked it: no workflow, Dockerfile or documentation referenced it, and packaging only ships dbt_ci*, so it never reached an installed copy either. The README already directs contributors to run 'pip install -e ".[dev]"' directly. Its companion bin/dbt is already gone, so this empties bin/. --- bin/install | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 bin/install diff --git a/bin/install b/bin/install deleted file mode 100755 index dbfb037..0000000 --- a/bin/install +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH="$(realpath "$0")" -SCRIPT_DIR="$(dirname "$SCRIPT_PATH")" -REPO_ROOT="$(dirname "$SCRIPT_DIR")" - -echo "Installing dbt-ci tool..." - -# Check that python is installed -if ! command -v python3 &> /dev/null; then - echo "Python 3 is not installed. Please install Python 3 and try again." - exit 1 -fi - -# Install the dbt-ci tool using pip -cd "$REPO_ROOT" || exit -pip install -e . - -echo "dbt-ci tool installed successfully!" -echo "You can now run the tool using the command: dbt-ci --help" \ No newline at end of file