mirror of
https://github.com/mozilla/cipherscan.git
synced 2025-04-21 01:03:39 +02:00
Merge 94316df50c
into 17dcd0dc05
This commit is contained in:
commit
a92489d6f2
9
cscan.sh
9
cscan.sh
@ -1,14 +1,15 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
pushd "$(dirname ${BASH_SOURCE[0]})" > /dev/null
|
pushd "$(dirname ${BASH_SOURCE[0]})" > /dev/null
|
||||||
if [ ! -d ./tlslite ]; then
|
if [ ! -d ./tlslite ]; then
|
||||||
echo -e "\n${BASH_SOURCE[0]}: tlslite-ng not found, downloading..."
|
git clone --depth=1 https://github.com/tomato42/tlslite-ng.git .tlslite-ng --quiet
|
||||||
git clone --depth=1 https://github.com/tomato42/tlslite-ng.git .tlslite-ng
|
|
||||||
ln -s .tlslite-ng/tlslite tlslite
|
ln -s .tlslite-ng/tlslite tlslite
|
||||||
|
echo -e "\n${BASH_SOURCE[0]}: tlslite-ng not found, downloaded."
|
||||||
|
|
||||||
fi
|
fi
|
||||||
if [ ! -d ./ecdsa ]; then
|
if [ ! -d ./ecdsa ]; then
|
||||||
echo -e "\n${BASH_SOURCE[0]}: python-ecdsa not found, downloading..."
|
git clone --depth=1 https://github.com/warner/python-ecdsa.git .python-ecdsa --quiet
|
||||||
git clone --depth=1 https://github.com/warner/python-ecdsa.git .python-ecdsa
|
|
||||||
ln -s .python-ecdsa/src/ecdsa ecdsa
|
ln -s .python-ecdsa/src/ecdsa ecdsa
|
||||||
|
echo -e "${BASH_SOURCE[0]}: python-ecdsa not found, downloaded.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# update the code if it is running in interactive terminal
|
# update the code if it is running in interactive terminal
|
||||||
|
Loading…
Reference in New Issue
Block a user