Skip to content

Commit 7f7d44d

Browse files
committed
Fix Windows cds compile for loop
1 parent c62ef9e commit 7f7d44d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extractors/cds/tools/workflow/cds-compilation-for-actions.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ for /f "usebackq delims=" %%D in ("%TEMP_DIRS%") do (
9696
REM Check for .cds files in app\, db\, or srv\ subdirectories
9797
if !CDS_FILES_FOUND! equ 0 (
9898
for %%S in (app db srv) do (
99-
if exist "%%S" (
100-
for /r "%%S" %%F in (*.cds) do (
99+
if exist "%%S\" (
100+
for %%F in ("%%S\*.cds") do (
101101
set "CDS_FILES_FOUND=1"
102102
)
103103
)

0 commit comments

Comments
 (0)