From 0b8aa5ea11a1195651bcbb11a481c079817aa98b Mon Sep 17 00:00:00 2001
From: David Tolnay <dtolnay@gmail.com>
Date: Sun, 12 Feb 2023 11:38:58 -0800
Subject: [PATCH] Touch up spacing in rustup command

---
 action.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/action.yml b/action.yml
index 97af51c..31ca4b0 100644
--- a/action.yml
+++ b/action.yml
@@ -61,7 +61,7 @@ runs:
 
     - run: |
         : install rustup if needed
-        if ! command -v rustup &> /dev/null ; then
+        if ! command -v rustup &>/dev/null; then
           curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
           echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
         fi