mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 16:11:15 +00:00
12 lines
284 B
Plaintext
12 lines
284 B
Plaintext
|
#!/usr/bin/python3
|
||
|
#
|
||
|
# pull-uca-ddebs -- pull ddeb package files for ubuntu cloud archive
|
||
|
# Basic usage: pull-uca-ddebs <package name> [version|release]
|
||
|
#
|
||
|
# See pull-pkg
|
||
|
|
||
|
from ubuntutools.pullpkg import PullPkg
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
PullPkg.main(distro='uca', pull='ddebs')
|