Make test script more portable
seq isn't POSIX and isn't present by default on BSDs
This commit is contained in:
parent
9107b5fdd3
commit
5be13d8fd1
@ -16,7 +16,8 @@ $OPENSSL req -new -x509 -subj "/C=UK/O=mbed TLS/CN=CA00" $OPT \
|
||||
cp 00.crt c00.pem
|
||||
|
||||
# generate long chain
|
||||
for i in $(seq 1 $NB); do
|
||||
i=1
|
||||
while [ $i -le $NB ]; do
|
||||
UP=$( printf "%02d" $((i-1)) )
|
||||
ME=$( printf "%02d" $i )
|
||||
|
||||
@ -30,4 +31,5 @@ for i in $(seq 1 $NB); do
|
||||
cat ${ME}.crt c${UP}.pem > c${ME}.pem
|
||||
|
||||
rm ${ME}.csr
|
||||
i=$((i+1))
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user