Skip to content

Commit

Permalink
switch to space delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyguo11 committed Oct 23, 2024
1 parent c1b91a6 commit 63dac32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion isaaclab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ while [[ $# -gt 0 ]]; do
python_exe=$(extract_python_exe)
echo "[INFO] Using python from: ${python_exe}"
shift # past argument
${python_exe} $@
${python_exe} "$@"
# exit neatly
break
;;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ def add_app_launcher_args(parser: argparse.ArgumentParser) -> None:
type=str,
default="",
help=(
"Command line arguments for Omniverse Kit as a string separated by delimiter ','."
' Example usage: --ov_args "--ext-folder=/path/to/ext1,--ext-folder=/path/to/ext2"'
"Command line arguments for Omniverse Kit as a string separated by a space delimiter."
' Example usage: --ov_args "--ext-folder=/path/to/ext1 --ext-folder=/path/to/ext2"'
),
)

Expand Down Expand Up @@ -573,7 +573,7 @@ def _config_resolution(self, launcher_args: dict):
# Resolve additional arguments passed to Kit
self._ov_args = []
if launcher_args["ov_args"]:
self._ov_args = [arg.strip() for arg in launcher_args["ov_args"].split(",")]
self._ov_args = [arg for arg in launcher_args["ov_args"].split()]
sys.argv += self._ov_args

# Resolve the absolute path of the experience file
Expand Down

0 comments on commit 63dac32

Please sign in to comment.