Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
add_sora_arguments のコメントを修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
enm10k committed Mar 4, 2024
1 parent 3c0f000 commit 3c6412d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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. "
Expand Down

0 comments on commit 3c6412d

Please sign in to comment.