Skip to content

Commit

Permalink
Fix wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
Melchizedek6809 committed Apr 25, 2024
1 parent 454cdb8 commit e288e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/environment.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern char **environ;
void lRedefineEnvironment(lClosure *c){
lMap *t = lMapAllocRaw();
#ifdef __wasi__
t = addVar("PATH=",t); // Necessary so that tests don't fail
addVar("PATH=",t); // Necessary so that tests don't fail
#endif
for(int i=0;environ[i];i++){
addVar(environ[i], t);
Expand Down

0 comments on commit e288e91

Please sign in to comment.