mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
Merge branch 'improve-remote-build' into test-improve-remote-build
This commit is contained in:
commit
4345557a32
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ def _execute_build(
|
|||
# This random string was chosen because snapcraft uses a MD5 hash
|
||||
# represented as a 32 character hex string by default, so we use the same
|
||||
# length but from a larger character set just because we can.
|
||||
random_string = ''.join(random.choice(string.ascii_letters + string.digits)
|
||||
random_string = ''.join(random.choice(string.ascii_lowercase + string.digits)
|
||||
for _ in range(32))
|
||||
build_id = f'snapcraft-{target}-{random_string}'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue