1
0
mirror of https://github.com/rancher/os.git synced 2025-07-02 01:31:48 +00:00

fixes typo

require -> required
This commit is contained in:
Julien Ammous 2018-04-11 09:30:08 +02:00 committed by niusmallnan
parent 6e0952d69e
commit 804af20754

View File

@ -16,7 +16,7 @@ INITRD=${ARTIFACTS}/initrd
mkdir -p ${ARTIFACTS} ${PREPOP_DIR}
if [ "$(docker info | grep 'Storage Driver: ' | sed 's/Storage Driver: //')" != "overlay" ]; then
echo Overlay storage driver is require to prepackage exploded images
echo Overlay storage driver is required to prepackage exploded images
echo packaging images.tar instead
tar czf ${ARTIFACTS}/rootfs${SUFFIX}.tar.gz --exclude lib/modules --exclude lib/firmware -C ${INITRD_DIR} .
exit 0