krzysztofzablocki / IconOverlaying

Build informations on top of your app icon.

Home Page:http://twitter.com/merowing_

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Script fails if icon not in root folder

fechu opened this issue · comments

If the *_base.png files are not in the root folder of the project located the script will fail when you make a release build.

if [ $CONFIGURATION = "Release" ]; then
    cp ${base_file} $target_path
    return
fi

It only looks in the root folder. Change ${base_file} to ${base_path}. Then it works.

Do you want a pull request? It would also be good if you update it in your blogpost, because I copied the script from your blogpost.

Hey, sure send me a PR and I'll update blogpost as well. Thanks!