Skip to content

Commit 544d8ab

Browse files
make-srpm.sh: don't shell out redundantly to pwd
Just something that annoyed me while reading the script. Signed-off-by: John Mulligan <[email protected]>
1 parent f49c645 commit 544d8ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make-srpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
#
99

1010
test -f "ceph-$1.tar.bz2" || ./make-dist $1
11-
rpmbuild -D"_sourcedir `pwd`" -D"_specdir `pwd`" -D"_srcrpmdir `pwd`" -bs ceph.spec
11+
rpmbuild -D"_sourcedir ${PWD}" -D"_specdir ${PWD}" -D"_srcrpmdir ${PWD}" -bs ceph.spec

0 commit comments

Comments
 (0)