-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build name and typos mentioned in PR 4
- Loading branch information
1 parent
a11cc5a
commit f067f94
Showing
11 changed files
with
19 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
REM Clean existing builds | ||
rmdir %~dp0docs\book /S /Q | ||
REM Source setup | ||
set REPO_ROOT=%~dp0 | ||
REM Clean existing build | ||
rmdir %REPO_ROOT%docs\book /S /Q | ||
REM Build book | ||
mdbook serve --open %~dp0\docs | ||
mdbook serve --open %REPO_ROOT%docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
# Source setup | ||
export REPO_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && (pwd -W 2> /dev/null || pwd)) | ||
# Clean existing builds | ||
# Clean existing build | ||
rm -R ${REPO_ROOT}/docs/book | ||
# Build Python code based on doc strings. This only needs to be done on API changes. | ||
# Generate python venv | ||
# $HFS/python/bin/python -m venv ${REPO_ROOT}/tools/python | ||
# source ${REPO_ROOT}/tools/python/bin/activate | ||
# python -m pip install pydoc-markdown | ||
# This is currently not being used as pydoc-markdown fails to detect all docstrings. | ||
# Build book | ||
mdbook serve --open ${REPO_ROOT}/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#usda 1.0 | ||
def Cube "box" () | ||
def Cube "example" () | ||
{ | ||
double size = 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#usda 1.0 | ||
def Cylinder "box" () | ||
def Cylinder "example" () | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#usda 1.0 | ||
def Cube "box" () | ||
def Cube "asset" () | ||
{ | ||
double size = 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#usda 1.0 | ||
def Cube "box" () | ||
def Cube "asset" () | ||
{ | ||
double size = 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#usda 1.0 | ||
def Cylinder "box" () | ||
def Cylinder "asset" () | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#usda 1.0 | ||
def "testAssetA" ( | ||
prepend references = @assetA/assetA.usd@</box> | ||
prepend references = @assetA/assetA.usd@</asset> | ||
) | ||
{ | ||
} |