1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Use .sh file extension for all Bash scripts (#10499)

The `.sh` file extension is now used for all Bash scripts. This ensures
the files are recognized as Bash scripts by the ShellCheck CI job, and
by editors/IDEs for improved syntax highlighting.
This commit is contained in:
Mark Stacey 2021-02-23 12:56:41 -03:30 committed by GitHub
parent 1d23b59af3
commit 73e0fdddd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 13 additions and 13 deletions

View File

@ -118,9 +118,9 @@ jobs:
- run: - run:
name: Create GitHub Pull Request for version name: Create GitHub Pull Request for version
command: | command: |
.circleci/scripts/release-bump-changelog-version .circleci/scripts/release-bump-changelog-version.sh
.circleci/scripts/release-bump-manifest-version .circleci/scripts/release-bump-manifest-version.sh
.circleci/scripts/release-create-release-pr .circleci/scripts/release-create-release-pr.sh
prep-deps: prep-deps:
executor: node-browsers executor: node-browsers
@ -257,7 +257,7 @@ jobs:
at: . at: .
- run: - run:
name: yarn audit name: yarn audit
command: .circleci/scripts/yarn-audit command: .circleci/scripts/yarn-audit.sh
test-e2e-chrome: test-e2e-chrome:
executor: node-browsers executor: node-browsers
@ -277,7 +277,7 @@ jobs:
- run: - run:
name: test:e2e:chrome name: test:e2e:chrome
command: | command: |
if .circleci/scripts/test-run-e2e if .circleci/scripts/test-run-e2e.sh
then then
yarn test:e2e:chrome yarn test:e2e:chrome
fi fi
@ -304,7 +304,7 @@ jobs:
- run: - run:
name: test:e2e:chrome:metrics name: test:e2e:chrome:metrics
command: | command: |
if .circleci/scripts/test-run-e2e if .circleci/scripts/test-run-e2e.sh
then then
yarn test:e2e:chrome:metrics yarn test:e2e:chrome:metrics
fi fi
@ -319,7 +319,7 @@ jobs:
- checkout - checkout
- run: - run:
name: Install Firefox name: Install Firefox
command: ./.circleci/scripts/firefox-install command: ./.circleci/scripts/firefox-install.sh
- attach_workspace: - attach_workspace:
at: . at: .
- run: - run:
@ -331,7 +331,7 @@ jobs:
- run: - run:
name: test:e2e:firefox name: test:e2e:firefox
command: | command: |
if .circleci/scripts/test-run-e2e if .circleci/scripts/test-run-e2e.sh
then then
yarn test:e2e:firefox yarn test:e2e:firefox
fi fi
@ -346,7 +346,7 @@ jobs:
- checkout - checkout
- run: - run:
name: Install Firefox name: Install Firefox
command: ./.circleci/scripts/firefox-install command: ./.circleci/scripts/firefox-install.sh
- attach_workspace: - attach_workspace:
at: . at: .
- run: - run:
@ -358,7 +358,7 @@ jobs:
- run: - run:
name: test:e2e:firefox:metrics name: test:e2e:firefox:metrics
command: | command: |
if .circleci/scripts/test-run-e2e if .circleci/scripts/test-run-e2e.sh
then then
yarn test:e2e:firefox:metrics yarn test:e2e:firefox:metrics
fi fi
@ -419,7 +419,7 @@ jobs:
# this fix included: https://github.com/LavaMoat/LavaMoat/pull/121 # this fix included: https://github.com/LavaMoat/LavaMoat/pull/121
- run: - run:
name: build:lavamoat-viz name: build:lavamoat-viz
command: ./.circleci/scripts/create-lavamoat-viz command: ./.circleci/scripts/create-lavamoat-viz.sh
- store_artifacts: - store_artifacts:
path: build-artifacts path: build-artifacts
destination: build-artifacts destination: build-artifacts
@ -442,10 +442,10 @@ jobs:
- run: - run:
name: Create GitHub release name: Create GitHub release
command: | command: |
.circleci/scripts/release-create-gh-release .circleci/scripts/release-create-gh-release.sh
- run: - run:
name: Create GitHub Pull Request to sync master with develop name: Create GitHub Pull Request to sync master with develop
command: .circleci/scripts/release-create-master-pr command: .circleci/scripts/release-create-master-pr.sh
job-publish-storybook: job-publish-storybook:
executor: node-browsers executor: node-browsers