From 9bd8318371c66bb7900cf1e112dc964fdadf8da2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Dec 2025 16:40:18 +0000 Subject: [PATCH] Add ql.sh script and create symlinks in docker-entrypoint.sh Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> --- docker/docker-entrypoint.sh | 5 +++++ shell/ql.sh | 4 ++++ 2 files changed, 9 insertions(+) create mode 100755 shell/ql.sh diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index eb2027f2..a729bc9d 100755 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -2,6 +2,11 @@ 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 new file mode 100755 index 00000000..24e7b87f --- /dev/null +++ b/shell/ql.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +dir_shell=$QL_DIR/shell +. $dir_shell/update.sh "$@"