Skip to content

Commit 4e5a5b4

Browse files
committed
list output msys2
1 parent eafd12c commit 4e5a5b4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

apothecary/formulas/videoInput.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,16 @@ function build() {
108108

109109
cmake --build . --config Release
110110
fi
111+
112+
# List all files in the build directory
113+
echo "Listing all files in build directory:"
114+
ls -a "videoInputSrcAndDemos/build_${TYPE}_${ARCH}"
115+
116+
# List all files in the Release directory if it exists
117+
if [ -d "videoInputSrcAndDemos/build_${TYPE}_${ARCH}/Release" ]; then
118+
echo "Listing all files in Release directory:"
119+
ls -a "videoInputSrcAndDemos/build_${TYPE}_${ARCH}/Release"
120+
fi
111121
}
112122

113123
# executed inside the lib src dir, first arg $1 is the dest libs dir root

0 commit comments

Comments
 (0)