We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b782b4 commit d7998d0Copy full SHA for d7998d0
bin/zopen-build
@@ -843,9 +843,11 @@ setEnv()
843
{
844
845
# Certificate information
846
- export SSL_CERT_FILE="${ZOPEN_CA}"
847
- export GIT_SSL_CAINFO="${ZOPEN_CA}"
848
- export CURL_CA_BUNDLE="${ZOPEN_CA}"
+ if [ -n "${ZOPEN_CA}" ]; then
+ export SSL_CERT_FILE="${ZOPEN_CA}"
+ export GIT_SSL_CAINFO="${ZOPEN_CA}"
849
+ export CURL_CA_BUNDLE="${ZOPEN_CA}"
850
+ fi
851
852
initDefaultEnvironment
853
setDepsEnv
@@ -963,6 +965,9 @@ tagBinaryFiles()
963
965
#
964
966
tagTree()
967
968
+ if ${getSourceOnly}; then
969
+ return;
970
971
dirtotag="$1"
972
absdir=$(cd ${dirtotag} && echo "${PWD}")
973
tagBinaryFiles "${absdir}"
0 commit comments