6 lines
68 B
Bash
6 lines
68 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
if [ ! -d "${ROOTFS_DIR}" ]; then
|
||
|
copy_previous
|
||
|
fi
|