pthbs

Packaging Through Hashed Build Scripts
git clone https://ccx.te2000.cz/git/pthbs
Log | Files | Refs | Submodules | README

commit ff01c4229bbb2da499db0092caa3851e22888311
parent b442ae054a2988e325748c9be179ff52ebe518d9
Author: Jan Pobříslo <ccx@te2000.cz>
Date:   Thu, 22 Feb 2024 07:14:33 +0100

Delimit positional arguments

Diffstat:
Mcommand/pthbs-build | 2+-
Muserns_sandbox.py | 3++-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/command/pthbs-build b/command/pthbs-build @@ -143,7 +143,7 @@ function at_filehash(hash_type, file_hash, dst, dstdir){ sandbox_cmd=sandbox_cmd" --vars="q(ENVIRON["basedir"]"/vars.yaml") sandbox_cmd=sandbox_cmd" --extra-mount=tmpfs:"q(ENVIRON["basedir"]"/work") sandbox_cmd=sandbox_cmd" --extra-mount=rw_bind:"q(ENVIRON["workdir"])":"q(ENVIRON["workdir"]) - sandbox_cmd=sandbox_cmd" "q(ENVIRON["basedir"]"/work/root") + sandbox_cmd=sandbox_cmd" "-- q(ENVIRON["basedir"]"/work/root") sandbox_cmd=sandbox_cmd" env_ignored" } } else { diff --git a/userns_sandbox.py b/userns_sandbox.py @@ -359,7 +359,8 @@ def main(args): argument_parser = argparse.ArgumentParser( - description="User namespaces based sandbox for pthbs" + description="User namespaces based sandbox for pthbs", + allow_abbrev=False, ) argument_parser.add_argument( '--vars',