diff options
Diffstat (limited to 'mail/cyrus-imapd22/pkg-install')
-rw-r--r-- | mail/cyrus-imapd22/pkg-install | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/cyrus-imapd22/pkg-install b/mail/cyrus-imapd22/pkg-install index 556a643fd972..d2ba72f75349 100644 --- a/mail/cyrus-imapd22/pkg-install +++ b/mail/cyrus-imapd22/pkg-install @@ -18,11 +18,10 @@ modify_cyrus_user() { uhome=${PKG_PREFIX}/cyrus if ! ${PW} mod user ${USER} -d "${uhome}" -s "${shell}"; then - e=$? - echo "*** Failed to update user \`${USER}'." - exit ${e} + echo "*** Failed to update user \`${USER}'." + else + echo "*** Updated user \`${USER}'." fi - echo "*** Updated user \`${USER}'." } |