aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-16 13:47:34 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-16 13:47:34 +1300
commitf459ddb18a57eee8891f701d36b289a4987432c4 (patch)
tree1ecdf2e213d489ceb13a6ff215be29601c3470b0
parentUse case statement; cleaner (diff)
downloaddotfiles-f459ddb18a57eee8891f701d36b289a4987432c4.tar.gz
dotfiles-f459ddb18a57eee8891f701d36b289a4987432c4.zip
Remove some unneeded quotes
God bless you, shellcheck(1)
-rw-r--r--bash/bashrc.d/mysql.bash4
-rw-r--r--sh/profile2
2 files changed, 3 insertions, 3 deletions
diff --git a/bash/bashrc.d/mysql.bash b/bash/bashrc.d/mysql.bash
index 32eba449..bc4d0272 100644
--- a/bash/bashrc.d/mysql.bash
+++ b/bash/bashrc.d/mysql.bash
@@ -9,7 +9,7 @@
# password=SsJ2pICe226jM
#
mysql() {
- local config="$HOME"/.mysql/"$1".cnf
+ local config=$HOME/.mysql/$1.cnf
if [[ -r $config ]] ; then
shift
command mysql --defaults-extra-file="$config" "$@"
@@ -23,7 +23,7 @@ _mysql() {
local word=${COMP_WORDS[COMP_CWORD]}
# Check directory exists and has at least one .cnf file
- local dir="$HOME"/.mysql
+ local dir=$HOME/.mysql
if [[ ! -d $dir ]] || (
shopt -s nullglob dotglob
declare -a files=("$dir"/*.cnf)
diff --git a/sh/profile b/sh/profile
index 9219ac38..5059d778 100644
--- a/sh/profile
+++ b/sh/profile
@@ -1,6 +1,6 @@
# Add ~/.local/bin to PATH if it exists
if [ -d "$HOME"/.local/bin ] ; then
- PATH="$HOME"/.local/bin:"$PATH"
+ PATH=$HOME/.local/bin:$PATH
fi
# Load all supplementary scripts in ~/.profile.d