Skip to content

Commit

Permalink
ci: remove unused --ci option from validate script
Browse files Browse the repository at this point in the history
  • Loading branch information
kyliau authored and clydin committed Apr 13, 2021
1 parent 076ab0f commit 3227e89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
echo "This build is not over a PR, nothing to do."
fi
- run:
command: yarn -s admin validate --ci
command: yarn -s admin validate

e2e-cli:
parameters:
Expand Down
2 changes: 1 addition & 1 deletion scripts/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import validateBuildFiles from './validate-build-files';
import validateLicenses from './validate-licenses';
import validateUserAnalytics from './validate-user-analytics';

export default async function (options: { verbose: boolean; ci: boolean }, logger: logging.Logger) {
export default async function (options: { verbose: boolean }, logger: logging.Logger) {
let error = false;

if (execSync(`git status --porcelain`).toString()) {
Expand Down

0 comments on commit 3227e89

Please sign in to comment.