diff options
author | simo <simo> | 2005-06-20 08:55:05 +0200 |
---|---|---|
committer | simo <simo> | 2005-06-20 08:55:05 +0200 |
commit | 02b82cf9bad4d9a708384fe517fed37ff8fa902e (patch) | |
tree | 06aa7d9d94c8744f93673dac20b76f3976e33fde /tupkg/update/tupkgupdate | |
parent | 09517611f6fef2b37e02f921e2a06ae492afa034 (diff) | |
download | aur-02b82cf9bad4d9a708384fe517fed37ff8fa902e.tar.gz aur-02b82cf9bad4d9a708384fe517fed37ff8fa902e.tar.xz |
Fixed a bug waiting to happen in runGensync
Diffstat (limited to 'tupkg/update/tupkgupdate')
-rwxr-xr-x | tupkg/update/tupkgupdate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tupkg/update/tupkgupdate b/tupkg/update/tupkgupdate index c8298cdc..7e8c67bd 100755 --- a/tupkg/update/tupkgupdate +++ b/tupkg/update/tupkgupdate @@ -294,7 +294,7 @@ def deleteFile(filename): def runGensync(repo, pkgbuild): #target = os.path.join(repo, os.path.basename(repo) + ".db.tar.gz") target = os.path.join(repo, "community.db.tar.gz") - command = "gensync '" + pkgbuild_dir + "' '" + target + "'" + command = "gensync '" + pkgbuild + "' '" + target + "'" return execute(command) ############################################################ |