We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c8b01 commit 0c55addCopy full SHA for 0c55add
StaticAnalysis/prelude_rearange.sh StaticAnalysis/prelude_rearrange.shStaticAnalysis/prelude_rearange.sh renamed to StaticAnalysis/prelude_rearrange.sh
@@ -2,7 +2,7 @@
2
set -euo pipefail
3
4
# Find all .sh files and process each one
5
-find . -type f -name "*.sh" | while IFS= read -r file; do
+find . -type f -name "*.sh" -print0 | while IFS= read -r -d '' file; do
6
# Check if file contains "prelude.sh"
7
if grep -qE "^\.[[:space:]]+(\.\./)*prelude\.sh$" "$file"; then
8
echo "Processing: $file"
0 commit comments