Skip to content

Commit

Permalink
Merge pull request #1 from richnetdesign/richnetdesign-patch-1
Browse files Browse the repository at this point in the history
symlink
  • Loading branch information
richnetdesign authored Nov 16, 2021
2 parents 0c36b37 + e9597ea commit 2182fa0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions libarchive/_libarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,10 @@ def archive_entry_mtime(*args):
return __libarchive.archive_entry_mtime(*args)
archive_entry_mtime = __libarchive.archive_entry_mtime

def archive_entry_symlink(*args):
return __libarchive.archive_entry_symlink(*args)
archive_entry_symlink = __libarchive.archive_entry_symlink

def archive_entry_filetype(*args):
return __libarchive.archive_entry_filetype(*args)
archive_entry_filetype = __libarchive.archive_entry_filetype
Expand All @@ -388,6 +392,14 @@ def archive_entry_set_mtime(*args):
return __libarchive.archive_entry_set_mtime(*args)
archive_entry_set_mtime = __libarchive.archive_entry_set_mtime

def archive_entry_set_symlink(*args):
return __libarchive.archive_entry_set_symlink (*args)
archive_entry_set_symlink = __libarchive.archive_entry_set_symlink

def archive_entry_set_link(*args):
return __libarchive.archive_entry_set_link (*args)
archive_entry_set_link = __libarchive.archive_entry_set_link

def archive_entry_set_filetype(*args):
return __libarchive.archive_entry_set_filetype(*args)
archive_entry_set_filetype = __libarchive.archive_entry_set_filetype
Expand Down

0 comments on commit 2182fa0

Please sign in to comment.