This commit is contained in:
2026-01-17 11:12:54 -06:00
parent ce7d83ec91
commit 45ee4a337c
4 changed files with 43 additions and 11 deletions

View File

@@ -25,7 +25,7 @@ var ACTOR_EXT = '.ce'
var load_internal = os.load_internal
function use_embed(name) {
return load_internal(`js_${name}_use`)
return load_internal("js_" + name + "_use")
}
globalThis.logical = function(val1)
@@ -54,9 +54,10 @@ globalThis.ends_with = function(str, suffix) {
}
var js = use_embed('js')
os.print(js)
var fd = use_embed('fd')
os.print(fd)
// Get the shop path from HOME environment
var home = os.getenv('HOME') || os.getenv('USERPROFILE')
if (!home) {