Skip to content

Instantly share code, notes, and snippets.

@joewalker
Created March 21, 2012 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joewalker/2147582 to your computer and use it in GitHub Desktop.
Save joewalker/2147582 to your computer and use it in GitHub Desktop.
moz incremental build
#!/bin/sh
dirs=( \
$FIREFOX_HOME/obj/browser/themes \
$FIREFOX_HOME/obj/browser/devtools \
$FIREFOX_HOME/obj/browser/base \
$FIREFOX_HOME/obj/browser/app \
)
cd #####
for dir in ${dirs[@]}
do
if ! make -s -C $dir
then
read -p "$dir failed"
return 1;
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment