Skip to content

Commit

Permalink
ok we good
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed May 30, 2023
1 parent cbae894 commit 3730e1a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const BASH_INSTALL_HOMEBREW = '/bin/bash -c "$(curl -fsSL https://raw.githubuser
const BREW_UPDATE = 'brew update'
const BREW_INSTALL_FLOW_CLI = 'brew install flow-cli'
const POWERSHELL_INSTALL_CMD = (githubToken?: string): string =>
`iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') ${
githubToken != null ? `-GitHubToken ${githubToken}` : ''
}}"`
`iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') } ${
githubToken != null ? `-GitHubToken ${githubToken} ` : ''
}"`
const BASH_INSTALL_FLOW_CLI = (githubToken?: string): string =>
`(${
githubToken != null ? `export GITHUB_TOKEN=${githubToken} && ` : ''
Expand Down

0 comments on commit 3730e1a

Please sign in to comment.