Skip to content

Commit

Permalink
fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Dec 17, 2023
1 parent 68c0d9a commit 19a307d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/WebsocketServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ class ClientConnection {
cwd = __dirname;
} else{
console.warn("Running without Bubblewrap container!")
cmd = "lean";
cmdArgs = ["--server"];
cmd = "lake";
cmdArgs = ["serve", "--"];
cwd = path
}

Expand Down
2 changes: 1 addition & 1 deletion server/bubblewrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ ELAN_HOME=$(cd $1 && lake env printenv ELAN_HOME)
--unshare-cgroup \
--die-with-parent \
--chdir "/project/" \
lean --server
lake serve --
)

0 comments on commit 19a307d

Please sign in to comment.