Skip to content

Commit

Permalink
let dist files be copied in make.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
stilscher committed Dec 8, 2023
1 parent a5ef30d commit 69a962d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
.LSOverride

# Icon must end with two \r
Icon
Icon


# Thumbnails
._*
Expand Down Expand Up @@ -170,6 +171,9 @@ dist
# ocamlbuild working directory
_build/

# distribution files
_dist/

# ocamlbuild targets
*.byte
*.native
Expand Down
2 changes: 1 addition & 1 deletion dune
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(rule
(alias gobview)
(mode promote)
(target dist)
(deps src/App.bc.js goblint-http-server/goblint_http.exe node_modules webpack.config.js)
(action
(run npx webpack build)))
Expand Down
2 changes: 1 addition & 1 deletion goblint-http-server/goblint_http.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open Lwt.Infix
module Yojson_conv = Ppx_yojson_conv_lib.Yojson_conv

let docroot = ref "run"
let distroot = ref "gobview/dist"
let distroot = ref "gobview/_dist"
let index = ref "index.html"
let addr = ref "127.0.0.1"
let port = ref 8080
Expand Down

0 comments on commit 69a962d

Please sign in to comment.