15 lines
277 B
Bash
Executable File
15 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. ../../common.sh
|
|
|
|
# With '--remove-destination' all possibly existing soft links in
|
|
# '$OVERLAY_ROOTFS' will be overwritten correctly.
|
|
cp -r --remove-destination $DEST_DIR/* \
|
|
$OVERLAY_ROOTFS
|
|
|
|
echo "Bundle '$BUNDLE_NAME' has been installed."
|
|
|
|
cd $SRC_DIR
|