Skip to content

Commit

Permalink
fix prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Nov 9, 2020
1 parent 8c9f948 commit 702ba69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/docusaurus/src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 702ba69

Please sign in to comment.