We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4329f6c commit bdedf5aCopy full SHA for bdedf5a
src/utils/syncEnv.js
@@ -13,7 +13,7 @@ module.exports = (variables, environment) => {
13
if (! variable.key in environment) return;
14
15
// Ensure that the variable needs updating
16
- if (! environment[variable.key] != parseValue(variable.latest_version.value)) return;
+ if (environment[variable.key] === parseValue(variable.latest_version.value)) return;
17
18
let value = variable.latest_version.value;
19
0 commit comments