Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
fix release/package files in deb repos. bug 631032, r=armenzg
Browse files Browse the repository at this point in the history
  • Loading branch information
escapewindow committed Feb 16, 2011
1 parent b43dbd4 commit d9f72b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/signdebs.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _signRepo(self, repo_name, platform):

# TODO error_list
error_list = []
command = "%s -p -d %s apt-ftparchive packages " % (sbox_path, sbox_work_dir)
command = "%s -d %s apt-ftparchive packages " % (sbox_path, sbox_work_dir)
command += "dists/%s/%s/binary-armel |" % (platform, section)
command += "gzip -9c > %s/dists/%s/%s/binary-armel/Packages.gz" % \
(abs_work_dir, platform, section)
Expand All @@ -141,7 +141,7 @@ def _signRepo(self, repo_name, platform):
# Create Release file outside of the tree, then move in.
# TODO error_list
error_list=[]
command = "%s -p -d %s/%s " % (sbox_path, sbox_work_dir, sub_dir)
command = "%s -d %s/%s " % (sbox_path, sbox_work_dir, sub_dir)
command += "apt-ftparchive release . > %s/Release.tmp" % abs_work_dir
if self.runCommand(command, error_list=error_list):
self.error("Exiting signRepo.")
Expand Down

0 comments on commit d9f72b8

Please sign in to comment.