diff options
Diffstat (limited to 'git')
-rwxr-xr-x | git/new-c-proj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/new-c-proj b/git/new-c-proj index 7676e9f..dfd00f9 100755 --- a/git/new-c-proj +++ b/git/new-c-proj @@ -19,7 +19,7 @@ git init . cat > LICENSE <<EOF ISC License -© $(date +%Y) Mattias Andrée <maandree@kth.se> +© $(date +%Y) Mattias Andrée <m@maandree.se> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -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_]')" |