mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-12-28 02:10:32 -07:00
🔨 Remove (BSD) -d flag from 'find' (#28013)
This commit is contained in:
parent
c0a544d385
commit
cdc960fd1d
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ shopt -s nullglob
|
|||
export PAUSE=1
|
||||
|
||||
# Get a list of all folders that contain a file matching "Configuration*.h"
|
||||
find -ds "$CBASE"/config/examples -type d -name 'Configuration.h' -o -name 'Configuration_adv.h' -print0 | while IFS= read -r -d $'\0' CONF; do
|
||||
find -s "$CBASE"/config/examples -type d -name 'Configuration.h' -o -name 'Configuration_adv.h' -print0 | while IFS= read -r -d $'\0' CONF; do
|
||||
|
||||
# Remove the file name and slash from the end of the path
|
||||
CONF=${CONF%/*}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue