hibyos: "run script" now invokes "/bin/sh" instead of "sh"

Change-Id: I409b8deaf7150abb0c00204e596bf8906b3fdc46
This commit is contained in:
Solomon Peachy 2025-04-26 09:55:07 -04:00
parent 310e380056
commit fb2f56f8a6

View file

@ -429,7 +429,7 @@ void run_file(const char *name)
pid_t pid = fork();
if(pid == 0)
{
execlp("sh", "sh", buf, NULL);
execlp("/bin/sh", "sh", buf, NULL);
_exit(42);
}
int status;