Skip to content

Commit

Permalink
Rename ch 10, r 4 for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
robertodr committed Sep 21, 2018
1 parent 00ef883 commit 2417e94
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ published by Packt and authored by [Radovan Bast](https://github.com/bast) and
- [1. Installing your project](chapter-10/recipe-01/README.md)
- [2. Generating export headers](chapter-10/recipe-02/README.md)
- [3. Exporting your targets](chapter-10/recipe-03/README.md)
- [4. Installing a superbuild project](chapter-10/recipe-04/README.md)
- [4. Installing a superbuild](chapter-10/recipe-04/README.md)


### [Chapter 11: Packaging Projects](chapter-11/README.md)
Expand Down
2 changes: 1 addition & 1 deletion chapter-10/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
- [1. Installing your project](recipe-01/README.md)
- [2. Generating export headers](recipe-02/README.md)
- [3. Exporting your targets](recipe-03/README.md)
- [4. Installing a superbuild project](recipe-04/README.md)
- [4. Installing a superbuild](recipe-04/README.md)
2 changes: 1 addition & 1 deletion chapter-10/recipe-04/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Installing a superbuild project
# Installing a superbuild

This recipe shows how to install a superbuild which depends on a library which
may or may not be available on the system.
Expand Down
2 changes: 1 addition & 1 deletion chapter-10/recipe-04/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Installing a superbuild project
Installing a superbuild
2 changes: 1 addition & 1 deletion testing/dependencies/appveyor/anaconda.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function SetUpConda ($Anaconda_cache) {
Write-Host $conda_path $args
Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru

$args = "install --yes --quiet conda-build anaconda-client jinja2 setuptools"
$args = "install --yes --quiet conda-build anaconda-client conda-verify jinja2 setuptools"
Write-Host $conda_path $args
Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru

Expand Down
2 changes: 1 addition & 1 deletion testing/dependencies/travis/anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ else
conda update --all --yes &> /dev/null
conda clean -tipy &> /dev/null
# Install conda build and deployment tools.
conda install --yes --quiet conda-build anaconda-client jinja2 setuptools &> /dev/null
conda install --yes --quiet conda-build anaconda-client conda-verify jinja2 setuptools &> /dev/null
conda clean -tipsy &> /dev/null
conda info -a
cd "$TRAVIS_BUILD_DIR"
Expand Down

0 comments on commit 2417e94

Please sign in to comment.