mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Move status message (#8361)
This commit is contained in:
parent
afb07cf50d
commit
6a093bd35a
1 changed files with 3 additions and 3 deletions
|
|
@ -166,6 +166,9 @@ def promote_snaps(version):
|
|||
assert_logged_into_snapcraft()
|
||||
for snap in SNAPS:
|
||||
revisions = get_snap_revisions(snap, version)
|
||||
# The loop below is kind of slow, so let's print some output about what
|
||||
# it is doing.
|
||||
print('Releasing', snap, 'snaps to the stable channel')
|
||||
for revision in revisions:
|
||||
cmd = ['snapcraft', 'release', snap, revision, 'stable']
|
||||
try:
|
||||
|
|
@ -175,9 +178,6 @@ def promote_snaps(version):
|
|||
print("The output printed to stdout was:")
|
||||
print(e.stdout)
|
||||
raise
|
||||
# This loop is kind of slow, so let's print some output about what it
|
||||
# is doing.
|
||||
print('Successfully released', snap, 'to the stable channel.')
|
||||
|
||||
|
||||
def main(args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue