syft/internal/archive/test-fixtures/generate-zip-fixture-from-source-dir.sh
Alex Goodman b3ca75646c
keep file catalogers separate from file-related definitions
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
2022-03-22 17:23:13 -04:00

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