mirror of
https://github.com/anchore/syft
synced 2024-11-10 14:24:12 +00:00
12 lines
362 B
Bash
Executable file
12 lines
362 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
# $1 —— absolute path to destination file, should end with .zip, ideally
|
|
# $2 —— absolute path to directory from which to add entries to the archive
|
|
# $3 —— if files should be zip64 or not
|
|
|
|
if [[$3]]; then
|
|
pushd "$2" && find . -print | zip -fz "$1" -@ && popd
|
|
else
|
|
pushd "$2" && find . -print | zip "$1" -@ && popd
|
|
fi
|