mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 03:22:05 -08:00
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:
commit
e2a47d00cf
2 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue