File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
chapter-11/recipe-02/cxx-example Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ variables:
5454 name : Testing Conda recipes
5555 shell : /bin/bash
5656 command : |
57+ export PATH=/opt/conda/bin:$PATH
5758 pipenv run python testing/collect_tests.py 'chapter-11/recipe-04' &&
5859 pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'
5960
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ if [ $# -eq 0 ] ; then
77 exit 1
88fi
99
10+ # Remove symlinks
11+ find " $PWD " -type l -exec sh -c '
12+ file=$(basename "$1")
13+ directory=${1%/*}
14+ (cd "$directory" && cp --remove-destination "$(readlink "$file")" "$file")' sh {} ' ;'
15+
1016# build directory is provided by the main script
1117build_directory=" $1 "
1218mkdir -p " ${build_directory} "
You can’t perform that action at this time.
0 commit comments