Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bustage fix for bug 745975: create properties directory after clobber…
Browse files Browse the repository at this point in the history
…ing. r=rail
  • Loading branch information
bhearsum committed Mar 20, 2013
1 parent b84816a commit fee938a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/l10n/release_repacks.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ releaseConfig=$($JSONTOOL -k properties.release_config $PROPERTIES_FILE)
releaseTag=$($JSONTOOL -k properties.script_repo_revision $PROPERTIES_FILE) releaseTag=$($JSONTOOL -k properties.script_repo_revision $PROPERTIES_FILE)
product=$($JSONTOOL -k properties.product $PROPERTIES_FILE) product=$($JSONTOOL -k properties.product $PROPERTIES_FILE)


if [ ! -e $outputPropertiesDir ]; then
mkdir $outputPropertiesDir
fi

if [ -z "$BUILDBOT_CONFIGS" ]; then if [ -z "$BUILDBOT_CONFIGS" ]; then
export BUILDBOT_CONFIGS="http://hg.mozilla.org/build/buildbot-configs" export BUILDBOT_CONFIGS="http://hg.mozilla.org/build/buildbot-configs"
fi fi
Expand All @@ -57,6 +53,10 @@ $PYTHON $SCRIPTS_DIR/buildfarm/maintenance/purge_builds.py \
-s 7 -n info -n 'rel-*' -n 'tb-rel-*' -n $slavebuilddir -s 7 -n info -n 'rel-*' -n 'tb-rel-*' -n $slavebuilddir
cd $workdir cd $workdir


if [ ! -e $outputPropertiesDir ]; then
mkdir $outputPropertiesDir
fi

LOCALE_OPT= LOCALE_OPT=
if $JSONTOOL -k properties.locale $PROPERTIES_FILE; then if $JSONTOOL -k properties.locale $PROPERTIES_FILE; then
locales=$($JSONTOOL -k properties.locale $PROPERTIES_FILE) locales=$($JSONTOOL -k properties.locale $PROPERTIES_FILE)
Expand Down

0 comments on commit fee938a

Please sign in to comment.