*: Convert tabulators to whitespaces in bash scripts.

Execution of `./scripts/fix.sh` that executed:
```
find ./ -name '*.sh' | xargs sed --follow-symlinks -i 's|\t|  |g'
```
This commit is contained in:
Piotr Tabor
2020-10-26 10:42:25 +01:00
parent c035df5317
commit 0ba16d8ee1
19 changed files with 262 additions and 262 deletions

View File

@@ -1,13 +1,13 @@
#!/bin/bash
if ! [[ "$0" =~ "./gencerts.sh" ]]; then
echo "must be run from 'fixtures'"
exit 255
echo "must be run from 'fixtures'"
exit 255
fi
if ! which cfssl; then
echo "cfssl is not installed"
exit 255
echo "cfssl is not installed"
exit 255
fi
cfssl gencert --initca=true ./ca-csr.json | cfssljson --bare ./ca