Skip to content

Commit bdedf5a

Browse files
committed
Update syncEnv.js
1 parent 4329f6c commit bdedf5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/syncEnv.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = (variables, environment) => {
1313
if (! variable.key in environment) return;
1414

1515
// Ensure that the variable needs updating
16-
if (! environment[variable.key] != parseValue(variable.latest_version.value)) return;
16+
if (environment[variable.key] === parseValue(variable.latest_version.value)) return;
1717

1818
let value = variable.latest_version.value;
1919

0 commit comments

Comments
 (0)