John Keeping <[email protected]> writes:
>> > Why not just replace the six-liner by this one-liner:
>> >
>> > target=${target#"$curdir"/}
>>
>> Simple enough ;-)
>
> This seems to have arrived on next without this fix, so here's a patch
> on top.
>
> git-submodule.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/git-submodule.sh b/git-submodule.sh
> index 0eee703..db9f260 100755
> --- a/git-submodule.sh
> +++ b/git-submodule.sh
> @@ -127,7 +127,7 @@ relative_path ()
> do
> case "$target" in
> "$curdir/"*)
> - target=${target#$curdir/}
> + target=${target#"$curdir"/}
> break
> ;;
> esac
J6t meant a patch to remove the entire case...esac and replace it
with a single liner (target=${target#"$curdir"/}).
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html