mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 07:02:03 -08:00
fix broken f-string formatting and broken python make edits call
This commit is contained in:
parent
2a250720a6
commit
8dc1f6b039
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)
|
cd $(cf_source_dir) && ./mach build $(_ARGS)
|
||||||
|
|
||||||
edits:
|
edits:
|
||||||
python ./scripts/developer.py $(version) $(release)
|
python3 ./scripts/developer.py $(version) $(release)
|
||||||
|
|
||||||
check-arch:
|
check-arch:
|
||||||
@if ! echo "x86_64 i686 arm64" | grep -qw "$(arch)"; then \
|
@if ! echo "x86_64 i686 arm64" | grep -qw "$(arch)"; then \
|
||||||
|
|
|
||||||
|
|
@ -208,7 +208,7 @@ def handle_choice(choice):
|
||||||
'\n'.join(
|
'\n'.join(
|
||||||
sorted(
|
sorted(
|
||||||
(
|
(
|
||||||
f'{v}\t{k[len("../patches/"):-len('.patch')]}'
|
f'{v}\t{k[len("../patches/"):-len(".patch")]}'
|
||||||
for k, v in apply_dict.items()
|
for k, v in apply_dict.items()
|
||||||
),
|
),
|
||||||
reverse=True,
|
reverse=True,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue