Fix developer script; Merge PR #201 from alternativshik/main

Fix make edits python version and broken f-string in developer.py
This commit is contained in:
daijro 2025-02-12 10:27:21 -06:00 committed by GitHub
commit e2a47d00cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ build:
cd $(cf_source_dir) && ./mach build $(_ARGS)
edits:
python ./scripts/developer.py $(version) $(release)
python3 ./scripts/developer.py $(version) $(release)
check-arch:
@if ! echo "x86_64 i686 arm64" | grep -qw "$(arch)"; then \

View file

@ -208,7 +208,7 @@ def handle_choice(choice):
'\n'.join(
sorted(
(
f'{v}\t{k[len("../patches/"):-len('.patch')]}'
f'{v}\t{k[len("../patches/"):-len(".patch")]}'
for k, v in apply_dict.items()
),
reverse=True,