mirror of
https://github.com/openappsec/attachment.git
synced 2025-11-15 08:52:17 +03:00
* add attachment load script * update file path * update file path * update file path --------- Co-authored-by: Daniel Eisenberg <danielei@checkpoint.com>
10 lines
245 B
Bash
10 lines
245 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
echo "Preparing shared Envoy attachment files..."
|
|
mkdir -p /envoy/attachment/shared && \
|
|
cp -r /envoy/attachment/lib* /envoy/attachment/shared && \
|
|
cp /envoy/attachment/versions/$ENVOY_VERSION/lib* /envoy/attachment/shared
|
|
|