Skip to content

Commit

Permalink
fix(various): fix typo in flxbl.io url
Browse files Browse the repository at this point in the history
Co-authored-by: Jan Aertgeerts <[email protected]>
  • Loading branch information
JAertgeerts and Jan Aertgeerts authored Feb 27, 2024
1 parent 9f5307b commit 0cfbe9d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions packages/sfp-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

[![Join slack](https://i.imgur.com/FZZmA3g.png)](https://launchpass.com/flxblio)

A build system for package based development in Salesforce, delivered as a node cli that can be implemented in any CI/CD system of choice.Read more about the cli and details here - https://docs.flxblio.io
A build system for package based development in Salesforce, delivered as a node cli that can be implemented in any CI/CD system of choice.Read more about the cli and details here - https://docs.flxbl.io

#### Features

Expand All @@ -26,7 +26,7 @@ A build system for package based development in Salesforce, delivered as a node
- Integrate with any CI/CD system of choice
- All commands are enabled with statsD, for collecting metrics about your pipeline.

There are lot more features to explore. Read more at https://docs.flxblio.io
There are lot more features to explore. Read more at https://docs.flxbl.io

The project is delivered as a <b>CLI</b> that can be deployed in any CI/CD system, The module is available in [NPM](https://www.npmjs.com/package/@flxblio/sfp) or can be
used by using the [docker image](https://github.com/flxbl-io/sfp/pkgs/container/sfp)
Expand All @@ -45,7 +45,7 @@ used by using the [docker image](https://github.com/flxbl-io/sfp/pkgs/container/

#### CI/CD Reference Implementation

Getting started guides for popular CI/CD platforms along with reference pipelines are available [here](https://docs.flxblio.io/implementing-your-ci-cd/github)
Getting started guides for popular CI/CD platforms along with reference pipelines are available [here](https://docs.flxbl.io/implementing-your-ci-cd/github)

#### Installing sfp locally

Expand Down Expand Up @@ -86,7 +86,7 @@ To debug and test plugin

#### Maintainers

List of Maintainers are available in the [link](https://docs.flxblio.io/about-us)
List of Maintainers are available in the [link](https://docs.flxbl.io/about-us)


#### Where do I reach for queries?
Expand Down
2 changes: 1 addition & 1 deletion packages/sfp-cli/src/core/git/GitIdentity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class GitIdentity {
if (process.env.SFPOWERSCRIPTS_GIT_EMAIL) {
email = process.env.SFPOWERSCRIPTS_GIT_EMAIL;
} else {
email = 'sfp@flxblio.io';
email = 'sfp@flxbl.io';
}

await this.git.addConfig('user.email', email);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class CreateUnlockedPackageImpl extends CreatePackage {
throw new Error(
`The build for ${this.sfpPackage.packageName} was not completed in the wait time ${this.packageCreationParams.waitTime} provided.${EOL}
You might want to increase the wait time or better check the dependencies or convert to different package type ${EOL}
Read more about it here https://docs.flxblio.io/development-practices/types-of-packaging/unlocked-packages#build-options-with-unlocked-packages`
Read more about it here https://docs.flxbl.io/development-practices/types-of-packaging/unlocked-packages#build-options-with-unlocked-packages`
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default class PreRequisiteCheck {

if (!PreRequisiteCheck.isPrerequisiteMet) {
throw new Error( `Required Prerequisite values in ScratchOrgInfo is missing in the DevHub` +
`For more information Please refer https://sfp.flxblio.io/getting-started/prerequisites \n`);
`For more information Please refer https://sfp.flxbl.io/getting-started/prerequisites \n`);
}
}
}

0 comments on commit 0cfbe9d

Please sign in to comment.