Skip to content

Commit

Permalink
Merge pull request #32 from coolluck/master
Browse files Browse the repository at this point in the history
Avoid bash's variable unbound error
  • Loading branch information
ndbroadbent committed May 9, 2012
2 parents b50639f + a8319e1 commit b48ea28
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/git/aliases_and_bindings.sh
Expand Up @@ -38,7 +38,7 @@ _git
# Usage: __git_alias <alias> <command_prefix> <command>
__git_alias () {
if [ -n "$1" ]; then
local alias_str="$1"; local cmd_prefix="$2"; local cmd="$3"; local cmd_args=" $4"
local alias_str="$1"; local cmd_prefix="$2"; local cmd="$3"; local cmd_args=" ${4-}"
alias $alias_str="$cmd_prefix $cmd$cmd_args"
if [ "$shell" = "bash" ]; then
__define_git_completion $alias_str $cmd
Expand Down
11 changes: 5 additions & 6 deletions lib/git/status_shortcuts.sh
Expand Up @@ -22,7 +22,7 @@ git_status_shortcuts() {
# Run ruby script, store output
local cmd_output="$(/usr/bin/env ruby "$scmbDir/lib/git/status_shortcuts.rb" $@)"
# Print debug information if $scmbDebug = "true"
if [ "$scmbDebug" = "true" ]; then
if [ "${scmbDebug:-}" = "true" ]; then
printf "status_shortcuts.rb output => \n$cmd_output\n------------------------\n"
fi
if [[ -z "$cmd_output" ]]; then
Expand All @@ -31,18 +31,18 @@ git_status_shortcuts() {
fi
# Fetch list of files from last line of script output
files="$(echo "$cmd_output" | \grep '@@filelist@@::' | sed 's%@@filelist@@::%%g')"
if [ "$scmbDebug" = "true" ]; then echo "filelist => $files"; fi
if [ "${scmbDebug:-}" = "true" ]; then echo "filelist => $files"; fi
# Export numbered env variables for each file
IFS="|"
local e=1
for file in $files; do
export $git_env_char$e="$file"
if [ "$scmbDebug" = "true" ]; then echo "Set \$$git_env_char$e => $file"; fi
if [ "${scmbDebug:-}" = "true" ]; then echo "Set \$$git_env_char$e => $file"; fi
let e++
done
IFS=$' \t\n'

if [ "$scmbDebug" = "true" ]; then echo "------------------------"; fi
if [ "${scmbDebug:-}" = "true" ]; then echo "------------------------"; fi
# Print status
echo "$cmd_output" | \grep -v '@@filelist@@::'
zsh_reset # Reset zsh environment to default
Expand Down Expand Up @@ -164,8 +164,7 @@ git_clear_vars() {
local i
for (( i=1; i<=$gs_max_changes; i++ )); do
# Stop clearing after first empty var
if [[ -z "$(eval echo "\$$git_env_char$i")" ]]; then break; fi
unset $git_env_char$i
if [[ -z "$(eval echo "\${$git_env_char$i:-}")" ]]; then break; fi
done
}

Expand Down

0 comments on commit b48ea28

Please sign in to comment.