diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 18:43:33 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 18:43:33 +0000 |
commit | 18ca5f59a0209bba3366f931b0e0e528276739f0 (patch) | |
tree | 065e1becec036279372630791f09a87ac58f494f /project | |
parent | e545956adc191ad02bb341cb6a3846abcdd6d722 (diff) | |
download | sbpython3-18ca5f59a0209bba3366f931b0e0e528276739f0.tar.bz2 sbpython3-18ca5f59a0209bba3366f931b0e0e528276739f0.tar.xz |
project: hoppla.sh: account for micro-versions equal to or greater than 10.
Diffstat (limited to 'project')
-rwxr-xr-x | project/hoppla.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/hoppla.sh b/project/hoppla.sh index 20d5498..cb87222 100755 --- a/project/hoppla.sh +++ b/project/hoppla.sh @@ -48,7 +48,7 @@ fi for py_ver in "$py_base_ver" "$py_curr_ver"; do case "$py_ver" in - [0-9].[0-9].[0-9] ) + [0-9].[0-9].[0-9] | [0-9].[0-9].[1-2][0-9] ) if ! [ -d "$PY_SOURCE_PREFIX"/Python-$py_ver ]; then printf '%s: %s: %s\n' "$py_hoppla" \ "$PY_SOURCE_PREFIX"/Python-$py_ver \ |