summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-06-02 20:28:28 -0700
committerMicah Lee <micah@micahflee.com>2022-06-02 20:28:28 -0700
commit6a925d98e303d9a664214a10e994d880069949e0 (patch)
tree71a119739fc7387a232ab4c7cd790ac4f69ee33d
parent6a4449e9a892e21551e9fecaf20262de8223d0b3 (diff)
downloadonionshare-6a925d98e303d9a664214a10e994d880069949e0.tar.gz
onionshare-6a925d98e303d9a664214a10e994d880069949e0.zip
Fix testing if builds are already complete
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0ca0d955..1d347646 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -124,7 +124,7 @@ jobs:
- run:
name: Build openssl
command: |
- if [[ -d "~/build/prefix-openssl-x32/bin" ]]; then
+ if [[ -f "/home/circleci/build/prefix-openssl-x32//bin/openssl.exe" ]]; then
echo "openssl already compiled, skipping"
exit 0
fi
@@ -173,7 +173,7 @@ jobs:
- run:
name: Build libevent
command: |
- if [[ -d "~/build/prefix-libevent-x32/lib" ]]; then
+ if [[ -d "/home/circleci/build/prefix-libevent-x32/lib" ]]; then
echo "libevent already compiled, skipping"
exit 0
fi
@@ -222,7 +222,7 @@ jobs:
- run:
name: Build tor
command: |
- if [[ -d "~/build/prefix-tor-x32/bin" ]]; then
+ if [[ -f "/home/circleci/build/prefix-tor-x32/bin/tor.exe" ]]; then
echo "tor already compiled, skipping"
exit 0
fi