forked from Mirror/pmbootstrap
pmb.helpers.frontend: Print paths as a shell-friendly string (MR 2337)
Instead of [PosixPath('/home/newbyte/.local/var/pmbootstrap/cache_git/pmaports')] you get /home/neboula/.local/var/pmbootstrap/cache_git/pmaports like before. Fixes envkernel.sh failing during activation. Closes https://gitlab.com/postmarketOS/pmbootstrap/-/issues/2378
This commit is contained in:
parent
d50ce1c59b
commit
8c0bc2e0e8
1 changed files with 16 additions and 1 deletions
|
@ -7,6 +7,7 @@ from pmb.helpers import logging
|
|||
import os
|
||||
from pathlib import Path
|
||||
import sys
|
||||
from typing import Any
|
||||
|
||||
import pmb.aportgen
|
||||
import pmb.build
|
||||
|
@ -248,7 +249,21 @@ def config(args: PmbArgs):
|
|||
value = getattr(config, args.name)
|
||||
else:
|
||||
value = ""
|
||||
print(value)
|
||||
|
||||
def to_shell_friendly_representation(value: Any) -> str:
|
||||
friendly_representation: str
|
||||
|
||||
if isinstance(value, list) and len(value) == 1:
|
||||
value = value[0]
|
||||
|
||||
if isinstance(value, Path):
|
||||
friendly_representation = value.as_posix()
|
||||
else:
|
||||
friendly_representation = str(value)
|
||||
|
||||
return friendly_representation
|
||||
|
||||
print(to_shell_friendly_representation(value))
|
||||
else:
|
||||
# Serialize the entire config including default values for
|
||||
# the user. Even though the defaults aren't actually written
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue