Fixing apt_ppa type - can't use double equals with dash

This commit is contained in:
Tyler Akins 2013-05-26 15:54:28 -05:00
parent 51c8687455
commit 1485381340
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ name="$__object_id"
state_should="$(cat "$__object/parameter/state")"
state_is="$(cat "$__object/explorer/state")"
if [ "$state_should" == "$state_is" ]; then
if [ "$state_should" = "$state_is" ]; then
# Nothing to do, move along
exit 0
fi