Skip to content
Snippets Groups Projects
Commit 7d795df9 authored by Richard Hartmann's avatar Richard Hartmann
Browse files

Create .gitignore.d/ in case it does not exist

parent 84a9200b
No related branches found
No related tags found
No related merge requests found
...@@ -6,13 +6,14 @@ SELF=$(basename $0) ...@@ -6,13 +6,14 @@ SELF=$(basename $0)
[ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config" [ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config"
[ -z "$VCSH_BASE" ] && VCSH_BASE="$XDG_CONFIG_HOME/vcsh/repo.d" [ -z "$VCSH_BASE" ] && VCSH_BASE="$XDG_CONFIG_HOME/vcsh/repo.d"
for check_directory in "$VCSH_BASE" for check_directory in "$VCSH_BASE" "$HOME/.gitignore.d"
do do
if [ ! -d "$check_directory" ]; then if [ ! -d "$check_directory" ]; then
if [ -e "$check_directory" ]; then if [ -e "$check_directory" ]; then
echo "$SELF: error: $check_directory exists but is not a directory" >&2 echo "$SELF: error: $check_directory exists but is not a directory" >&2
exit 2 exit 2
else else
echo "$SELF: attempting to create $check_directory"
mkdir -p "$check_directory" || (echo "$SELF: error: could not create $check_directory" >&2; exit 2) mkdir -p "$check_directory" || (echo "$SELF: error: could not create $check_directory" >&2; exit 2)
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment