From 7953e68f3067ac3c9d4fe67e9f934c25036c0833 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:24:24 +0000 Subject: [PATCH] chore: platform.sh formatted --- containerised/platform.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/containerised/platform.sh b/containerised/platform.sh index 86eab51..9ada7c8 100644 --- a/containerised/platform.sh +++ b/containerised/platform.sh @@ -3,16 +3,16 @@ case $TARGETARCH in - "amd64") - echo "x86_64-unknown-linux-musl" > /.platform - echo "" > /.compiler - ;; - "arm64") - echo "aarch64-unknown-linux-musl" > /.platform - echo "gcc-aarch64-linux-gnu" > /.compiler - ;; - "arm") - echo "arm-unknown-linux-musleabihf" > /.platform - echo "gcc-arm-linux-gnueabihf" > /.compiler - ;; -esac \ No newline at end of file +"amd64") + echo "x86_64-unknown-linux-musl" >/.platform + echo "" >/.compiler + ;; +"arm64") + echo "aarch64-unknown-linux-musl" >/.platform + echo "gcc-aarch64-linux-gnu" >/.compiler + ;; +"arm") + echo "arm-unknown-linux-musleabihf" >/.platform + echo "gcc-arm-linux-gnueabihf" >/.compiler + ;; +esac