diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-01 19:26:05 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-01 19:26:05 +0100 |
commit | 2574c4cabc34756eb124e69d6a8e0ffeaa56a44f (patch) | |
tree | 0b6bc70a0d2bd5cb3879eb7b998b4ea17b053575 /git | |
parent | m (diff) | |
download | dotfiles-2574c4cabc34756eb124e69d6a8e0ffeaa56a44f.tar.gz dotfiles-2574c4cabc34756eb124e69d6a8e0ffeaa56a44f.tar.bz2 dotfiles-2574c4cabc34756eb124e69d6a8e0ffeaa56a44f.tar.xz |
...
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'git')
-rwxr-xr-x | git/new-c-proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/new-c-proj b/git/new-c-proj index 8bd90f8..dfd00f9 100755 --- a/git/new-c-proj +++ b/git/new-c-proj @@ -52,7 +52,7 @@ cat > .gitignore <<EOF EOF mkdir -p -- .git/info -printf '%s\n' '_*' '.hidden' '.makeenv' >> .git/info/exclude +printf '%s\n' '_*' '._*' '.hidden' '.makeenv' >> .git/info/exclude if printf '%s\n' "$1" | grep '^lib' >/dev/null 2>/dev/null; then UPPERCASE="$(printf '%s\n' "$1" | tr '[a-z-]' '[A-Z_]')" |