mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 12:12:47 +00:00
Fix bad tito script args.
This commit is contained in:
parent
a0cdf98405
commit
9ab84803b7
2 changed files with 2 additions and 2 deletions
2
bin/tito
2
bin/tito
|
@ -19,4 +19,4 @@ import sys
|
|||
from tito.cli import CLI
|
||||
|
||||
if __name__ == "__main__":
|
||||
CLI().main(sys.argv)
|
||||
CLI().main(sys.argv[1:])
|
||||
|
|
|
@ -36,4 +36,4 @@ os.environ['TITO_SRC_BIN_DIR'] = SRC_BIN_DIR
|
|||
from tito.cli import CLI
|
||||
|
||||
if __name__ == "__main__":
|
||||
CLI().main(sys.argv)
|
||||
CLI().main(sys.argv[1:])
|
||||
|
|
Loading…
Add table
Reference in a new issue