Advertisement
Guest User

patch_package.py dupeguru-4.0.3-4

a guest
Apr 4th, 2018
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.74 KB | None | 0 0
  1. --- package.py_old  2018-04-04 20:28:10.172547588 -0400
  2. +++ package.py  2018-04-04 20:27:55.069266545 -0400
  3. @@ -39,8 +39,8 @@
  4.      extra_ignores = ['*.so'] if not with_so else None
  5.      copy_packages(packages, destpath, extra_ignores=extra_ignores)
  6.      os.remove(op.join(destpath, 'qt', 'run_template.py')) # It doesn't belong in the package.
  7. -    shutil.copytree(op.join('build', 'help'), op.join(destpath, 'help'))
  8. -    shutil.copytree(op.join('build', 'locale'), op.join(destpath, 'locale'))
  9. +    shutil.copytree(op.join(os.getcwd(), 'help'), op.join(destpath, 'help'))
  10. +    shutil.copytree(op.join(os.getcwd(), 'locale'), op.join(destpath, 'locale'))
  11.      compileall.compile_dir(destpath)
  12.  
  13.  def package_debian_distribution(distribution):
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement