Skip to content

Commit

Permalink
Treat 0 and - as false only if no symbol follows
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed May 26, 2017
1 parent 4e2e5a3 commit 9a5198c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ChangeLog for squashmount

*squashmount-15.4.2
Martin Väth <martin at mvath.de>:
- Treat 0 and - as false only if no symbol follows

*squashmount-15.4.1
Martin Väth <martin at mvath.de>:
- Fix zsh completion return value

*squashmount-15.4.0_p2
Martin Väth <martin at mvath.de>:
- Provide etc/revdep-rebuild/66-squashmount for python implementation
Expand Down
2 changes: 1 addition & 1 deletion bin/squashmount
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env perl
BEGIN { require 5.022 }
package Squashmount v15.4.1;
package Squashmount v15.4.2;

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion etc/portage/repo.postsync.d/10-squashmount-gentoo
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ esac

yesno() {
case ${1:-n} in
[nNfF0-]*|[oO][fF]*)
[nNfF]*|[oO][fF]*|0|-)
return 1;;
esac
:
Expand Down

0 comments on commit 9a5198c

Please sign in to comment.