Skip to content

Commit

Permalink
Fix infinite loop in shell with babun (cygwin)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpeiris committed Apr 11, 2016
1 parent b6531e8 commit 0d80de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git/fallback/status_shortcuts_shell.sh 100644 → 100755
Expand Up @@ -127,7 +127,7 @@ _gs_output_file_group() {
if [ -z "$project_root" ]; then
relative="${stat_file[$i]}"
else
dest="$project_root/${stat_file[$i]}"
dest=$(readlink -f "$project_root/${stat_file[$i]}")
local pwd=$(readlink -f "$PWD")
relative="$(_gs_relative_path "$pwd" "$dest" )"
fi
Expand Down

0 comments on commit 0d80de3

Please sign in to comment.