Skip to content

Instantly share code, notes, and snippets.

@erbmicha
Created May 27, 2012 04:08
Show Gist options
  • Save erbmicha/2802132 to your computer and use it in GitHub Desktop.
Save erbmicha/2802132 to your computer and use it in GitHub Desktop.
Compile XIB files into NIB files for RubyMotion projects
#!/bin/bash
XIBS="*.xib
app/*.xib
interfaces/*.xib
resources/*.xib"
for i in $XIBS
do
echo "Compiling `basename $i`..."
ibtool --compile resources/`basename -s .xib $i`.nib $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment