Skip to content

Commit

Permalink
Builder: Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 14, 2011
1 parent 91fc71b commit 0cd5543
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion distrib/build_event.py
Expand Up @@ -11,7 +11,6 @@
import string
import glob
import platform
import gzip
import codecs
import build_version
import builder
Expand Down
5 changes: 4 additions & 1 deletion distrib/builder/utils.py
@@ -1,4 +1,7 @@
import os
import glob
import gzip
import time
import build_number
import config

Expand Down Expand Up @@ -35,7 +38,7 @@ def build_timestamp(tag):


def list_package_files(name):
buildDir = os.path.join(builder.config.EVENT_DIR, name)
buildDir = os.path.join(config.EVENT_DIR, name)

files = glob.glob(os.path.join(buildDir, '*.dmg')) + \
glob.glob(os.path.join(buildDir, '*.exe')) + \
Expand Down

0 comments on commit 0cd5543

Please sign in to comment.