mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Fix asterix wildcard
This commit is contained in:
parent
da692f477c
commit
893327f91b
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ EOF
|
||||||
)
|
)
|
||||||
|
|
||||||
for file in "${IGNORES[@]}"; do
|
for file in "${IGNORES[@]}"; do
|
||||||
if ! grep -q "^$file$" "$EXCLUDE_FILE"; then
|
if ! grep -Fxq "$file" "$EXCLUDE_FILE" 2>/dev/null; then
|
||||||
echo "$file" >>"$EXCLUDE_FILE"
|
echo "$file" >>"$EXCLUDE_FILE"
|
||||||
echo "Added $file to local git exclude ($EXCLUDE_FILE)"
|
echo "Added $file to local git exclude ($EXCLUDE_FILE)"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue