Fixed a bug waiting to happen in runGensync

This commit is contained in:
simo 2005-06-20 06:55:05 +00:00
parent 09517611f6
commit 02b82cf9ba

View file

@ -294,7 +294,7 @@ def deleteFile(filename):
def runGensync(repo, pkgbuild): def runGensync(repo, pkgbuild):
#target = os.path.join(repo, os.path.basename(repo) + ".db.tar.gz") #target = os.path.join(repo, os.path.basename(repo) + ".db.tar.gz")
target = os.path.join(repo, "community.db.tar.gz") target = os.path.join(repo, "community.db.tar.gz")
command = "gensync '" + pkgbuild_dir + "' '" + target + "'" command = "gensync '" + pkgbuild + "' '" + target + "'"
return execute(command) return execute(command)
############################################################ ############################################################