12 lines
366 B
Bash
12 lines
366 B
Bash
#!/usr/bin/env bash
|
|
# Copyright (c) Contributors to the aswf-docker Project. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -ex
|
|
|
|
mkdir -p /package
|
|
|
|
cd "${OLIVE_INSTALL_PREFIX}"
|
|
find . -type l -o -type f | cut -c3- > /tmp/new-prefix-files.txt
|
|
rsync -av --files-from=/tmp/new-prefix-files.txt --exclude-from=/tmp/previous-prefix-files.txt . /package/
|