Skip to content

Commit

Permalink
fix(packages/brpm): correct syntax error and typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aciba90 committed Dec 5, 2023
1 parent 3bad8b5 commit f6e7e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/brpm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def run_helper(helper, args=None, strip=True):


def read_dependencies(distro):
"""Returns the Python package depedencies from requirements.txt files.
"""Returns the Python package dependencies from requirements.txt files.
@returns a tuple of (build_deps, run_deps, test_deps)
"""
Expand Down Expand Up @@ -169,7 +169,7 @@ def main():
util.write_file(spec_fn, contents)
print("Created spec file at %r" % (spec_fn))
for p in args.patches:
util.copy(p, os.path.abspath(os.path.join(topdir, 'SOURCES', os.path.basename(p)))_
util.copy(p, os.path.abspath(os.path.join(topdir, 'SOURCES', os.path.basename(p))))

# Now build it!
print("Running 'rpmbuild' in %r" % (topdir))
Expand Down

0 comments on commit f6e7e54

Please sign in to comment.