summaryrefslogtreecommitdiffstats
path: root/modules/build.py
diff options
context:
space:
mode:
authorYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-08 15:27:45 -0500
committerYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-08 15:27:45 -0500
commit3bcae770792afe5d5fff2af127cad2c1d0d59d57 (patch)
treeb89e5835589ebd222d42c46943e38452f9faa6c6 /modules/build.py
parent84211749a73cbff248192519c0f458806b1fb065 (diff)
downloadfedora-devshell-3bcae770792afe5d5fff2af127cad2c1d0d59d57.tar.gz
fedora-devshell-3bcae770792afe5d5fff2af127cad2c1d0d59d57.tar.xz
fedora-devshell-3bcae770792afe5d5fff2af127cad2c1d0d59d57.zip
Got rid of non absolute _dir properties.
In effect, anything that ends in dir shoud usually return an absolute path. The absolute path is dynamically determined using utility functions based on the load time settings of a directory object. This both reduces the number of path ambiguities based on the cwd, and yet removes as many absolute paths from config files, so directory objects can be shared between workspaces and developers.
Diffstat (limited to 'modules/build.py')
-rw-r--r--modules/build.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/build.py b/modules/build.py
index cc61868..7fcc1b0 100644
--- a/modules/build.py
+++ b/modules/build.py
@@ -79,9 +79,6 @@ class Build(Directory):
for path, dirs, files in walk('.'):
for f in files:
if f.endswith('.rpm'):
- #TODO: Gotta figure out what should be FEDORA_DIR
- # Probably something involving "Project" or i dunno what
- # it's something temporary for now, don't commi this
move(join(path, f), join(target_dir, f))
def fetch_build(self, package):