allow password_fill to work without final newline

This commit is contained in:
Vicente Reyes 2018-11-11 18:09:13 -03:00 committed by GitHub
parent 3fd097066a
commit bd887ce988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ pass_backend() {
break
fi
fi
done < <($GPG "${GPG_OPTS[@]}" -d "$path" )
done < <($GPG "${GPG_OPTS[@]}" -d "$path" | awk 1 )
}
}
# =======================================================