mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
8 lines
238 B
Bash
Executable File
8 lines
238 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
|
|
|
|
pushd "$2" && find . -print | zip "$1" -@ && popd
|