From db98910bcae08b961d4551e48cac3dcf3740ad36 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Fri, 29 Nov 2024 18:04:21 +0100 Subject: [PATCH] fix: add missing comma in pre-build commands for i686-unknown-linux-gnu Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- Cross.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cross.toml b/Cross.toml index 0708fb3..98eb66a 100644 --- a/Cross.toml +++ b/Cross.toml @@ -8,7 +8,7 @@ pre-build = [ [target.i686-unknown-linux-gnu] pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install gcc-multilib-i686-linux-gnu:$CROSS_DEB_ARCH gcc-i686-linux-gnu:$CROSS_DEB_ARCH" + "apt-get update && apt-get --assume-yes install gcc-multilib-i686-linux-gnu:$CROSS_DEB_ARCH gcc-i686-linux-gnu:$CROSS_DEB_ARCH", ] [target.x86_64-pc-windows-gnu.env]