mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 00:06:15 +01:00
14 lines
209 B
Python
14 lines
209 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
|
||
|
"""
|
||
|
This wrapper allows git-obs to be called from the source directory during development.
|
||
|
"""
|
||
|
|
||
|
|
||
|
import osc.commandline_git
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
osc.commandline_git.main()
|