mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
fix: improve lockfile handling for cli
This commit is contained in:
+5
-1
@@ -383,7 +383,11 @@ async function compareDynFSElement(
|
||||
}
|
||||
|
||||
for (const [k] of Object.entries(m2)) {
|
||||
if (m1[k] === undefined) {
|
||||
if (
|
||||
m1[k] === undefined &&
|
||||
!k?.endsWith(".script.yaml") &&
|
||||
!k?.endsWith(".script.json")
|
||||
) {
|
||||
changes.push({ name: "deleted", path: k });
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user