mirror of
https://github.com/onionshare/onionshare.git
synced 2025-07-01 17:56:44 -04:00
Fix testing if builds are already complete
This commit is contained in:
parent
6a4449e9a8
commit
6a925d98e3
1 changed files with 3 additions and 3 deletions
|
@ -124,7 +124,7 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Build openssl
|
name: Build openssl
|
||||||
command: |
|
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"
|
echo "openssl already compiled, skipping"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
@ -173,7 +173,7 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Build libevent
|
name: Build libevent
|
||||||
command: |
|
command: |
|
||||||
if [[ -d "~/build/prefix-libevent-x32/lib" ]]; then
|
if [[ -d "/home/circleci/build/prefix-libevent-x32/lib" ]]; then
|
||||||
echo "libevent already compiled, skipping"
|
echo "libevent already compiled, skipping"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
@ -222,7 +222,7 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Build tor
|
name: Build tor
|
||||||
command: |
|
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"
|
echo "tor already compiled, skipping"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue