Skip to content

Commit

Permalink
Fix a couple of little bugs that crept in to p
Browse files Browse the repository at this point in the history
Signed-off-by: Neil Brown <[email protected]>
  • Loading branch information
neilbrown committed Jun 13, 2006
1 parent 7c2207f commit 7137bcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ case $cmd in
> .patches/files
;;
openall )
while p open last && p discard ; do : ; done
while $0 open last && $0 discard ; do : ; done
;;
recommit )
make_diff
Expand Down Expand Up @@ -906,7 +906,7 @@ case $cmd in
export )
# there must be only one patch. We
# git commit, p commit, p rebase
if [ -n `ls .patches/applied` ]
if [ -n "`ls .patches/applied`" ]
then
echo 'Cannot export when there are applied patches'
exit 1;
Expand Down

0 comments on commit 7137bcf

Please sign in to comment.