From 8d5e485cd68c87d061bdbadf10507c1251616b22 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Dec 2025 17:00:10 +0000 Subject: [PATCH] Revert changes - linkCommandToDir already handles symlink creation Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> --- docker/docker-entrypoint.sh | 5 ----- shell/ql.sh | 9 --------- 2 files changed, 14 deletions(-) delete mode 100755 shell/ql.sh diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index a729bc9d..eb2027f2 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -2,11 +2,6 @@ export PATH="$HOME/bin:$PATH" -# Create bin directory and symlinks for ql and task commands -mkdir -p "$HOME/bin" -ln -sf /ql/shell/ql.sh "$HOME/bin/ql" -ln -sf /ql/shell/task.sh "$HOME/bin/task" - dir_shell=/ql/shell . $dir_shell/share.sh diff --git a/shell/ql.sh b/shell/ql.sh deleted file mode 100755 index 51e9a27e..00000000 --- a/shell/ql.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -if [[ -z "$QL_DIR" ]]; then - echo "Error: QL_DIR environment variable is not set" - exit 1 -fi - -dir_shell="$QL_DIR/shell" -. "$dir_shell/update.sh" "$@"