Skip to content

Commit 7e36a5f

Browse files
committed
Fixed a bug where we didn't put it into the correct directory
Signed-off-by: Morten Linderud <morten@linderud.pw>
1 parent 5a5f0fa commit 7e36a5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repro.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@ install -d -o builduser -g builduser /srcpkgdest
190190
install -d -o builduser -g builduser /build
191191
sudo -iu builduser bash -c 'cd /startdir; SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH makepkg -sc --noconfirm --skippgpcheck'
192192
__END__
193-
mkdir -p "./$build"
193+
mkdir -p "./build"
194194
for pkgfile in "$BUILDDIRECTORY/$build"/pkgdest/*; do
195-
mv "$pkgfile" "./$build/"
195+
mv "$pkgfile" "./build/"
196196
done
197-
chown -R "$src_owner" "./$build"
197+
chown -R "$src_owner" "./build"
198198
}
199199

200200
# Desc: Sets up a container with the correct files

0 commit comments

Comments
 (0)