From 3c6412d9078f67995cd9d9637cab511d97f2b26c Mon Sep 17 00:00:00 2001 From: enm10k Date: Mon, 4 Mar 2024 15:11:45 +0900 Subject: [PATCH] =?UTF-8?q?add=5Fsora=5Farguments=20=E3=81=AE=E3=82=B3?= =?UTF-8?q?=E3=83=A1=E3=83=B3=E3=83=88=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/base.py b/base.py index e766116..9f53699 100644 --- a/base.py +++ b/base.py @@ -438,10 +438,12 @@ def install_sora_and_deps(platform: str, source_dir:str, build_dir:str, install_ install_sora(**install_sora_args) -''' -内部で os.path.abspath() を利用しており、 os.path.abspath() はカレントディレクトリに依存するため、 -この関数を利用する場合は ArgumentParser.parse_args() 実行前にカレントディレクトリを変更してはならない -''' + +# 内部で os.path.abspath() を利用しており、 os.path.abspath() はカレントディレクトリに依存するため、 +# この関数を利用する場合は ArgumentParser.parse_args() 実行前にカレントディレクトリを変更してはならない +# +# また、 --sora-args の指定には `--sora-args='--test'` のように `=` を使う必要がある +# `--sora-args '--test'` のようにスペースを使うと、ハイフンから始まるオプションが正しく解釈されない def add_sora_arguments(parser): parser.add_argument("--sora-dir", type=os.path.abspath, default=None, help="Refer to local Sora C++ SDK. "