We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902f6e5 commit 7041239Copy full SHA for 7041239
.circleci/config.yml
@@ -54,6 +54,7 @@ variables:
54
name: Testing Conda recipes
55
shell: /bin/bash
56
command: |
57
+ export PATH=/opt/conda/bin:$PATH
58
pipenv run python testing/collect_tests.py 'chapter-11/recipe-04' &&
59
pipenv run python testing/collect_tests.py 'chapter-11/recipe-05'
60
chapter-11/recipe-02/cxx-example/custom.sh
@@ -7,6 +7,12 @@ if [ $# -eq 0 ] ; then
7
exit 1
8
fi
9
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
+
16
# build directory is provided by the main script
17
build_directory="$1"
18
mkdir -p "${build_directory}"
0 commit comments