Compare commits

...

4 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
whyour c39f4ef846 chore: 更新 multer,解决 cve 漏洞 2026-03-07 21:31:24 +08:00
3 changed files with 567 additions and 256 deletions
+1 -1
View File
@@ -77,7 +77,7 @@
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"multer": "1.4.5-lts.1",
"multer": "2.1.1",
"node-schedule": "^2.1.0",
"nodemailer": "^6.9.16",
"p-queue-cjs": "7.3.4",
+564 -255
View File
File diff suppressed because it is too large Load Diff
+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