-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change tabs to be more accurate to current state of PROS (#380)
* Change tabs to be more accurate to current state of PROS * Update index.html * Fix the CI * it is midnight debug hours indeed * db * Thhink I found the culprit * partial soln? * not a fix * mistkae * Update azure-pipelines.yml * wait was it that * huh * Remove debug ls -la
- Loading branch information
1 parent
cb76884
commit 879f343
Showing
4 changed files
with
11 additions
and
8 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,5 +1,5 @@ | ||
docutils<0.18 | ||
Sphinx==1.8.5 | ||
sphinx==1.8.5 | ||
alabaster==0.7.13 | ||
sphinx_tabs==1.1.10 | ||
ablog==0.9.4 | ||
|
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,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
echo Building project | ||
make clean all | ||
rm -r ./build/v5/pros-4 | ||
mkdir ./build/v5/pros-4 | ||
cp -r pros-doxygen-docs/* ./build/v5/pros-4/ | ||
make all | ||
mkdir -p ./build/v5/pros-4 | ||
rm -rf ./build/v5/pros-4/* | ||
cp -r pros-doxygen-docs/* ./build/v5/pros-4/ |