You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently the Default.png and Icon.png are missing from the ios examples data folder.
should they be included inside the data folder of each ios example?
or is this something for the projectGenerator to take care of?
The text was updated successfully, but these errors were encountered:
ive pulled this latest update and think there is still a small issue with the .gitignore setup for some ios projects.
checking git status - its asking me if i want to add the following folders,
having a look inside these folders, theres nothing out of the ordinary
one thing they all have in common is they only contain the below and nothing else,
bin/data/Default.png
bin/data/Icon.png
I just tested it like below and I am not seeing any local changes. Could it be those files existed before the .gitignore update (created by a previous project generation)?
Pulled OF/Develop
Deleted examples folder
Discard Local Changes (restoring examples folder)
Compile projectGenerator, set OF Root, generate ios Examples
I'm currently in the process of tweaking/correcting the .gitignore structure, see #1081, so if you find any wrong stuff, report there pls. Fixing this will probably take place after the release, though.
@jvcleave: There's even a more elegant way to clean untracked files: git clean -nd to check which files/dirs will be removed, then git clean -df to actually do it.
Check the first step in every case, stuff that's deleted can't be brought back with git (since it's not in version control). I suspect that's why actually doing it requires the use of the force flag... http://schacon.github.com/git/git-clean.html
currently the Default.png and Icon.png are missing from the ios examples data folder.
should they be included inside the data folder of each ios example?
or is this something for the projectGenerator to take care of?
The text was updated successfully, but these errors were encountered: