Skip to content

Commit

Permalink
Fixed|Builder: Relative distrib path in builder config
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 15, 2014
1 parent a8d2263 commit 1369f07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion distrib/builder/config.py
Expand Up @@ -37,7 +37,9 @@ def get_arg(label):

# Determine APT repository path.
oldCwd = os.getcwd()
if DISTRIB_DIR: os.chdir(DISTRIB_DIR)
if DISTRIB_DIR:
DISTRIB_DIR = os.path.abspath(DISTRIB_DIR)
os.chdir(DISTRIB_DIR)
import build_version
build_version.find_version(quiet=True)
if build_version.DOOMSDAY_RELEASE_TYPE == 'Stable':
Expand Down
2 changes: 2 additions & 0 deletions distrib/releases/.gitignore
@@ -1,3 +1,5 @@
*.exe
*.dmg
*.deb
*.zip

0 comments on commit 1369f07

Please sign in to comment.