File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ main() {
74
74
# We only need to run npm version for "development" and "staging".
75
75
# This is because our release:prep script automatically bumps the version
76
76
# in the package.json and we commit it as part of the release PR.
77
- if [[ ENVIRONMENT == " production" ]]; then
77
+ if [[ " $ ENVIRONMENT" == " production" ]]; then
78
78
NPM_VERSION=" $VERSION "
79
79
else
80
80
echo " Not a production environment"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ describe("settings", () => {
14
14
testDir = await tmpdir ( testName )
15
15
} )
16
16
describe ( "with invalid JSON in settings file" , ( ) => {
17
- let mockSettingsFile = "coder.json"
17
+ const mockSettingsFile = "coder.json"
18
18
let pathToMockSettingsFile = ""
19
19
20
20
beforeEach ( async ( ) => {
@@ -33,7 +33,7 @@ describe("settings", () => {
33
33
} )
34
34
} )
35
35
describe ( "with invalid settings file path" , ( ) => {
36
- let mockSettingsFile = "nonExistent.json"
36
+ const mockSettingsFile = "nonExistent.json"
37
37
let pathToMockSettingsFile = ""
38
38
39
39
beforeEach ( async ( ) => {
You can’t perform that action at this time.
0 commit comments