-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from CommonWealthRobotics/kh/physics-update-mu…
…joco Adding mujoco test
- Loading branch information
Showing
35 changed files
with
4,642 additions
and
443 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,6 @@ hs_err_pid* | |
.idea | ||
out | ||
manufacturing | ||
html | ||
physicsTest | ||
/MUJOCO_LOG.TXT |
Submodule JCSG
updated
38 files
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
|
||
GITURL=$(git config --get remote.origin.url) | ||
|
||
echo $GITURL | ||
|
||
if test -d /path/to/directory; then | ||
echo "html Directory exists." | ||
cd html | ||
git pull | ||
else | ||
git clone $GITURL html | ||
cd html | ||
fi | ||
|
||
if ( git checkout origin/gh-pages -b gh-pages) then | ||
echo "Checked out $GITURL gh-pages" | ||
else | ||
echo "Creating out $GITURL gh-pages" | ||
git checkout origin/development -b gh-pages | ||
rm -r * | ||
echo "# A simple README file for the gh-pages branch" > README.md | ||
git add README.md | ||
git commit -m"Replaced gh-pages html with simple readme" | ||
git push -u origin gh-pages | ||
fi | ||
cd .. | ||
|
||
doxygen doxy.doxyfile | ||
|
||
cd html | ||
git add * | ||
git add search/* | ||
git commit -a -m"updating the doxygen" | ||
git push | ||
cd .. |
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
Oops, something went wrong.