ea3f4dd459
ensure 4 spaces indentation is used everywhere. Change-Id: Ieb48faacb4c96b7b358771d70c17f2f22d0354f4
13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
export OPENSUSE_EXTRAS_PATH="$TMP_MOUNT_PATH/tmp/opensuse-extras"
|
|
mkdir -p $OPENSUSE_EXTRAS_PATH
|
|
|
|
for file in common-defaults img-defaults ; do
|
|
cp $_LIB/$file $OPENSUSE_EXTRAS_PATH
|
|
done
|
|
|