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" "$@"