Shellcheck compliance.

This commit is contained in:
Bartek Stalewski 2024-10-15 00:44:53 +02:00
parent 689a752a94
commit 58ed90e705
No known key found for this signature in database
6 changed files with 34 additions and 32 deletions

View file

@ -1,9 +1,9 @@
#!/bin/sh
# basic git configuration
if [[ ! -d ${XDG_CONFIG_HOME}/git ]]; then
mkdir -p ${XDG_CONFIG_HOME}/git
cat << EOF > ${XDG_CONFIG_HOME}/git/config
if [ ! -d "${XDG_CONFIG_HOME}/git" ]; then
mkdir -p "${XDG_CONFIG_HOME}/git"
cat << EOF > "${XDG_CONFIG_HOME}/git/config"
[pull]
rebase = true
EOF