Skip to content

Commit

Permalink
Merge branch 'master' of github.com:openSUSE/obs-build
Browse files Browse the repository at this point in the history
  • Loading branch information
bugfinder committed Nov 5, 2015
2 parents db93181 + f3bf9ef commit 84c757f
Show file tree
Hide file tree
Showing 2 changed files with 788 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build-recipe-kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,10 @@ build_kiwi_product() {
fi

# move created product to correct destination
for i in $BUILD_ROOT/$TOPDIR/KIWIROOT/main/* ; do
pushd $BUILD_ROOT/$TOPDIR/KIWIROOT/main
for i in * ; do
test -e "$i" || continue
f=${i##*/}
case $f in
case $i in
*.iso) if [ -x /usr/bin/sha256sum ]; then
/usr/bin/sha256sum "$i" > "$i.sha256"
mv "$i.sha256" $BUILD_ROOT/$TOPDIR/KIWI/.
Expand All @@ -335,6 +335,7 @@ build_kiwi_product() {
*) test -d $i -a "$drop_repo" != true && mv $i $BUILD_ROOT/$TOPDIR/KIWI/. ;;
esac
done
popd
}

build_kiwi_appliance() {
Expand Down
Loading

0 comments on commit 84c757f

Please sign in to comment.