Skip to content

Commit bf8cd13

Browse files
committed
Fixed test stage mkdir
1 parent 5dae7e3 commit bf8cd13

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
- echo "Fetching root certs..."
8585
- curl -s https://curl.haxx.se/ca/cacert.pem > "$EXAMPLE/cacert.pem"
8686
- echo "Copying libraries to Test App ..."
87+
- mkdir -p "$EXAMPLE/libs/"
8788
- cp openssl/iOS-fat/lib/libcrypto.a "$EXAMPLE/libs/libcrypto.a"
8889
- cp openssl/iOS-fat/lib/libssl.a "$EXAMPLE/libs/libssl.a"
8990
- cp openssl/iOS-fat/include/openssl/* "$EXAMPLE/include/openssl/"

stage.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ while getopts "o:ncduth\?" o; do
9797
echo "Fetching root certs..."
9898
curl -s https://curl.haxx.se/ca/cacert.pem > "$EXAMPLE/cacert.pem"
9999
echo "Copying libraries to Test App ..."
100+
mkdir -p "$EXAMPLE/libs"
100101
cp openssl/iOS-fat/lib/libcrypto.a "$EXAMPLE/libs/libcrypto.a"
101102
cp openssl/iOS-fat/lib/libssl.a "$EXAMPLE/libs/libssl.a"
102103
cp openssl/iOS-fat/include/openssl/* "$EXAMPLE/include/openssl/"

0 commit comments

Comments
 (0)