Skip to content

Commit d0ea45b

Browse files
devzero2000gitster
authored andcommitted
git-stash.sh: use the $( ... ) construct for command substitution
The Git CodingGuidelines prefer the $(...) construct for command substitution instead of using the backquotes `...`. The backquoted form is the traditional method for command substitution, and is supported by POSIX. However, all but the simplest uses become complicated quickly. In particular, embedded command substitutions and/or the use of double quotes require careful escaping with the backslash character. The patch was generated by: for _f in $(find . -name "*.sh") do sed -i 's@`\(.*\)`@$(\1)@g' ${_f} done and then carefully proof-read. Signed-off-by: Elia Pinto <[email protected]> Reviewed-by: Matthieu Moy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 728fc79 commit d0ea45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-stash.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ USAGE="list [<options>]
1313

1414
SUBDIRECTORY_OK=Yes
1515
OPTIONS_SPEC=
16-
START_DIR=`pwd`
16+
START_DIR=$(pwd)
1717
. git-sh-setup
1818
. git-sh-i18n
1919
require_work_tree

0 commit comments

Comments
 (0)