not really bug, but breaks your install zip if you have certain mods installed other then smfshop
can you please amend for a future update if possible
<file name="$sourcedir/ManagePermissions.php">
<operation>
<search position="before"><![CDATA[
'who_view' => false,
'search_posts' => false,
'karma_edit' => false,
),
]]></search>
<add><![CDATA[
// Begin SMFShop code
'shop' => array(
'shop_main' => false,
'shop_buy' => false,
'shop_invother' => false,
'shop_sendmoney' => false,
'shop_senditems' => false,
'shop_bank' => false,
'shop_trade' => false,
),
// End SMFShop code
]]></add>
</operation>
</file>
to
<file name="$sourcedir/ManagePermissions.php">
<operation>
<search position="before"><![CDATA[
'who_view' => false,
'search_posts' => false,
'karma_edit' => false,
]]></search>
<add><![CDATA[
// Begin SMFShop code
'shop' => array(
'shop_main' => false,
'shop_buy' => false,
'shop_invother' => false,
'shop_sendmoney' => false,
'shop_senditems' => false,
'shop_bank' => false,
'shop_trade' => false,
// End SMFShop code
]]></add>
</operation>
</file>