summaryrefslogtreecommitdiff
path: root/runtime/js
diff options
context:
space:
mode:
authorLeo K <crowlkats@toaxl.com>2021-10-05 22:38:27 +0200
committerGitHub <noreply@github.com>2021-10-05 22:38:27 +0200
commit77a00ce1fb4ae2523e22b9b84ae09a0200502e38 (patch)
tree0027a2ff3dbff1e2b0c3afa7ce0f0e54805c7d62 /runtime/js
parentd67e85850688117e116bbf7054e80f30fe07afe6 (diff)
chore: various op cleanup (#12329)
Diffstat (limited to 'runtime/js')
-rw-r--r--runtime/js/30_os.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js
index f026940ca..15df6f554 100644
--- a/runtime/js/30_os.js
+++ b/runtime/js/30_os.js
@@ -49,7 +49,7 @@
}
function setEnv(key, value) {
- core.opSync("op_set_env", { key, value });
+ core.opSync("op_set_env", key, value);
}
function getEnv(key) {