eed131c373
This patch updates the openSuse element to work with the new base image file format. It should be noted that the base image file name has changed several times while updating this element, and and may need to be set manually via the "BASE_IMAGE_NAME" env var. Change-Id: I4dac8bf9a4bf76a00d4a04cbf063fd245b11f3d6
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
# ensure we do not have a lost+found directory in the root folder
|
|
# that could cause copy to fail.
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
rm -rf lost+found
|