Skip to content

Commit

Permalink
Merge pull request #167 from marv7000/fix/rpmbuild-typo
Browse files Browse the repository at this point in the history
Fix typo in rpmbuild.py
  • Loading branch information
asdil12 committed Dec 18, 2023
2 parents 706cfb9 + b4fd809 commit 8a0e126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opi/rpmbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def copy(src, dst):
link_target = os.readlink(src)
os.symlink(link_target, dst)
elif os.path.isfile(src):
shitil.copy2(src, dst)
shutil.copy2(src, dst)
else:
shutil.copytree(src, dst, copy_function=os.link, symlinks=True, ignore_dangling_symlinks=False)

Expand Down

0 comments on commit 8a0e126

Please sign in to comment.