Merge pull request #420 from MindTooth/tweak_strings

Tweaked some create_addon text.
This commit is contained in:
Stephan Raue 2012-04-08 11:35:33 -07:00
commit 8c300a75ce

View File

@ -69,19 +69,19 @@ if [ -f $PKG_DIR/addon ]; then
if [ -f $PKG_DIR/source/default.py ]; then
cp -R $PKG_DIR/source/* $ADDON_BUILD/$PKG_ADDON_ID
else
echo "*** WARNING: you *maybe* need at least $PKG_DIR/source/default.py so your addon can work ***"
echo "*** WARNING: You *probably* need at least $PKG_DIR/source/default.py to make your addon work ***"
fi
if [ -f $PKG_DIR/icon/icon.png ]; then
cp $PKG_DIR/icon/icon.png $ADDON_BUILD/$PKG_ADDON_ID
else
echo "*** WARNING: its recommended to have an $PKG_DIR/icon/icon.png ***"
echo "*** WARNING: It's recommended to have a $PKG_DIR/icon/icon.png file ***"
fi
if [ -f $PKG_DIR/changelog.txt ]; then
cp $PKG_DIR/changelog.txt $ADDON_BUILD/$PKG_ADDON_ID
else
echo "*** WARNING: its recommended to have an $PKG_DIR/changelog.txt ***"
echo "*** WARNING: It's recommended to have a $PKG_DIR/changelog.txt file ***"
fi
if [ -d $ADDON_BUILD/mkimage ]; then