Skip to content

Commit bef2923

Browse files
kgrubbdavidmhewitt
authored andcommitted
use copy with the correct paths to fix builds that include appcenter (#289)
1 parent 33fde3d commit bef2923

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@ build () {
4848

4949
# Symlink chosen package lists to where live-build will find them
5050
ln -s "package-lists.$PACKAGE_LISTS_SUFFIX" "config/package-lists"
51-
# symlink appcenter archive
51+
52+
# copy appcenter list & key
5253
if [ "$INCLUDE_APPCENTER" = "yes" ]; then
53-
ln -s "appcenter/appcenter.list.binary" "archives/appcenter.list.binary"
54-
ln -s "appcenter/appcenter.key.binary" "archives/appcenter.key.binary"
54+
cp "config/appcenter/appcenter.list.binary" "config/archives/appcenter.list.binary"
55+
cp "config/appcenter/appcenter.key.binary" "config/archives/appcenter.key.binary"
5556
fi
5657

5758
echo -e "

0 commit comments

Comments
 (0)