Shellcheck compliance.
This commit is contained in:
parent
689a752a94
commit
58ed90e705
6 changed files with 34 additions and 32 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue