6 lines
80 B
Bash
Executable file
6 lines
80 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ ! -d "${ROOTFS_DIR}" ]; then
|
|
copy_previous
|
|
fi
|