fix(bin): 修复pom文件名错误

This commit is contained in:
v-zhangjc9
2025-07-03 10:36:57 +08:00
parent 5cbda28594
commit 49cb62b287

View File

@@ -95,7 +95,7 @@ export const run_deploy = async (project) => {
}
export const run_deploy_root = async () => {
if (!(await isModified(pom.xml))) {
if (!(await isModified('pom.xml'))) {
console.log(`✅ Skip deploy root`)
return
}
@@ -104,7 +104,7 @@ export const run_deploy_root = async () => {
() => $`mvn clean deploy -N -D skipTests -s ${maven_setting}`
)
console.log(`✅ Finished deploy root (${millisecondToString(output['duration'])})`)
await updateModifiedTime(`pom.xml`)
await updateModifiedTime('pom.xml')
}
export const run_deploy_batch = async (projects) => {