Compare commits

...

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] 7b924483e7 fix: cd to script's directory for absolute paths in run_normal 2026-05-23 12:54:12 +00:00
copilot-swe-agent[bot] b43bd61ac6 fix: ensure all required directories are created with recursive option on container rebuild
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2026-03-07 13:38:23 +00:00
copilot-swe-agent[bot] 692c9a8d9e Initial plan 2026-03-07 13:33:00 +00:00
+2
View File
@@ -95,6 +95,8 @@ run_normal() {
if [[ ${file_param} != /* ]] && [[ ! -z ${relative_path} ]] && [[ ${file_param} =~ "/" ]]; then
cd ${relative_path}
file_param=${file_param/$relative_path\//}
elif [[ ${file_param} == /* ]] && [[ ! -z ${relative_path} ]]; then
cd ${relative_path}
fi
if [[ $isJsOrPythonFile == 'false' ]]; then