mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Change ci/init-external-repos.sh to use base64 -d
The BusyBox version of `base64` does not have `--decode`.
This commit is contained in:
parent
ade37c1dfc
commit
631f19377e
3 changed files with 8 additions and 2 deletions
6
CHANGES
6
CHANGES
|
@ -1,4 +1,10 @@
|
|||
|
||||
4.1.0-dev.449 | 2021-03-31 10:47:22 -0700
|
||||
|
||||
* Change ci/init-external-repos.sh to use `base64 -d` (Jon Siwek, Corelight)
|
||||
|
||||
The BusyBox version of `base64` does not have `--decode`.
|
||||
|
||||
4.1.0-dev.448 | 2021-03-31 10:29:17 -0700
|
||||
|
||||
* Teach ci/init-external-repos.sh to consider user permissions (Jon Siwek, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.1.0-dev.448
|
||||
4.1.0-dev.449
|
||||
|
|
|
@ -52,7 +52,7 @@ if [[ -n "${CIRRUS_CI}" ]] && [[ ! -d zeek-testing-private ]]; then
|
|||
|
||||
banner "Trying to clone zeek-testing-private git repo"
|
||||
echo "${ZEEK_TESTING_PRIVATE_SSH_KEY}" > cirrus_key.b64
|
||||
base64 --decode cirrus_key.b64 > cirrus_key
|
||||
base64 -d cirrus_key.b64 > cirrus_key
|
||||
rm cirrus_key.b64
|
||||
chmod 600 cirrus_key
|
||||
git --version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue