Skip to content

Commit

Permalink
programs: Fix bashism in gvfs-* wrapper script
Browse files Browse the repository at this point in the history
  • Loading branch information
mbiebl authored and ondrejholy committed Sep 29, 2017
1 parent 3c03e4e commit ffbe2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/deprecated.in
Expand Up @@ -7,7 +7,7 @@ help="gio help @command@"
>&2 echo "See '$help' for more info."
>&2 echo

if [ "$1" == "--help" ] || [ "$1" == "-h" ]; then
if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
exec $help "$@:2"
else
exec $replacement "$@"
Expand Down

0 comments on commit ffbe2ad

Please sign in to comment.