From 9a1ba739eaa193367a4363b4ac39f92beab61ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lorber?= Date: Mon, 9 Nov 2020 17:25:25 +0100 Subject: [PATCH] chore(v2): fix prettier formatting (#3714) --- packages/docusaurus/src/commands/deploy.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/docusaurus/src/commands/deploy.ts b/packages/docusaurus/src/commands/deploy.ts index 8591c50cf7..5690bdb139 100644 --- a/packages/docusaurus/src/commands/deploy.ts +++ b/packages/docusaurus/src/commands/deploy.ts @@ -82,7 +82,9 @@ export default async function deploy( const nonSshRemoteBranch: string = `https://${gitCredentials}@${githubHost}/${organizationName}/${projectName}.git`; const remoteBranch = - useSSH && useSSH.toLowerCase() === 'true' ? sshRemoteBranch : nonSshRemoteBranch; + useSSH && useSSH.toLowerCase() === 'true' + ? sshRemoteBranch + : nonSshRemoteBranch; // Check if this is a cross-repo publish. const currentRepoUrl = shell