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

Commit

Permalink
Bug 671166, Keep debug 'nightlies' only when there have been code cha…
Browse files Browse the repository at this point in the history
…nges, r=lsblakk
  • Loading branch information
nthomas-mozilla committed Jul 13, 2011
1 parent c06e60a commit 52ad964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildfarm/maintenance/archive-debug-builds.sh
Expand Up @@ -11,7 +11,7 @@ do
builddir="$BASE_PATH/$dir"
DATE_DIR=$(date +%Y-%m-%d-$branch-debug)
cd $builddir
archivedir="$(ls -r | head -1)"
archivedir="$(find . -maxdepth 1 -type d -mtime -1 -name '1?????????' | sort -n | tail -1 | cut -c3-)"
if [[ -n $archivedir && -d "$builddir/$archivedir" ]]; then
files="$(find $builddir/$archivedir/ -regex '.*\.\(dmg\|exe\|txt\|bz2\)')"
if [ -n "$files" ]; then
Expand Down

0 comments on commit 52ad964

Please sign in to comment.