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