mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-24 04:32:46 +00:00
Merge remote-tracking branch 'jumanjiman/master'
This commit is contained in:
commit
76ec2ef844
5 changed files with 12 additions and 1 deletions
2
man.asciidoc
Normal file
2
man.asciidoc
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
:man source: tito
|
||||||
|
:man manual: Tito User Manual
|
|
@ -221,7 +221,13 @@ class Builder(object):
|
||||||
'--define "_binary_filedigest_algorithm md5" %s %s %s --clean '
|
'--define "_binary_filedigest_algorithm md5" %s %s %s --clean '
|
||||||
'-ba %s' % (self.rpmbuild_options,
|
'-ba %s' % (self.rpmbuild_options,
|
||||||
self._get_rpmbuild_dir_options(), define_dist, self.spec_file))
|
self._get_rpmbuild_dir_options(), define_dist, self.spec_file))
|
||||||
output = run_command(cmd)
|
try:
|
||||||
|
output = run_command(cmd)
|
||||||
|
except (KeyboardInterrupt, SystemExit):
|
||||||
|
print ""
|
||||||
|
exit (1)
|
||||||
|
except Exception, err:
|
||||||
|
error_out('%s' % str(err))
|
||||||
print(output)
|
print(output)
|
||||||
files_written = self._find_wrote_in_rpmbuild_output(output)
|
files_written = self._find_wrote_in_rpmbuild_output(output)
|
||||||
if len(files_written) < 2:
|
if len(files_written) < 2:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
tito(8)
|
tito(8)
|
||||||
=======
|
=======
|
||||||
|
include::man.asciidoc[]
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
tito.props(5)
|
tito.props(5)
|
||||||
============
|
============
|
||||||
|
include::man.asciidoc[]
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
titorc(5)
|
titorc(5)
|
||||||
=========
|
=========
|
||||||
|
include::man.asciidoc[]
|
||||||
|
|
||||||
NAME
|
NAME
|
||||||
----
|
----
|
||||||
|
|
Loading…
Add table
Reference in a new issue