Compare commits

..

5 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 8d5e485cd6 Revert changes - linkCommandToDir already handles symlink creation
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2025-12-30 17:00:10 +00:00
copilot-swe-agent[bot] b87fe2ebf0 Add quotes to variable expansions in ql.sh
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2025-12-30 16:43:04 +00:00
copilot-swe-agent[bot] 7ea2d362f0 Add QL_DIR validation to ql.sh
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2025-12-30 16:41:26 +00:00
copilot-swe-agent[bot] 9bd8318371 Add ql.sh script and create symlinks in docker-entrypoint.sh
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2025-12-30 16:40:18 +00:00
copilot-swe-agent[bot] 4c2a8e2b24 Initial plan 2025-12-30 16:33:45 +00:00
-8
View File
@@ -258,16 +258,8 @@ git_clone_scripts() {
set_proxy "$proxy"
# Set TMPDIR to /tmp to avoid "unable to get random bytes" error in some Docker environments
local original_tmpdir="${TMPDIR:-}"
export TMPDIR=/tmp
git clone -q --depth=1 $part_cmd $url $dir
exit_status=$?
if [[ -n "$original_tmpdir" ]]; then
export TMPDIR="$original_tmpdir"
else
unset TMPDIR
fi
unset_proxy
}