mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
17 lines
473 B
Python
17 lines
473 B
Python
import djclick as click
|
|
|
|
from versions.tasks import import_development_versions
|
|
|
|
|
|
@click.command()
|
|
def command():
|
|
"""
|
|
Import development versions from GitHub.
|
|
|
|
This command will import the master and develop branches as versions
|
|
from GitHub based on the BOOST_BRANCHES setting.
|
|
"""
|
|
click.secho("Importing development versions...", fg="green")
|
|
import_development_versions()
|
|
click.secho("Finished importing development versions.", fg="green")
|