Skip to content

Commit

Permalink
Fix borked command-line script
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephBond committed Dec 17, 2024
1 parent 4ed6c45 commit 237d058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Fluid.purs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ copyOptions = { cwd: Nothing, env: Nothing, timeout: Nothing, killSignal: Nothin

copyFiles String -> Effect ChildProcess
copyFiles website = do
let root = "node_modules/@explorable-viz/fluid"
exec ("./" <> root <> "script/bundle-website.sh -w" <> website <> " -r true") copyOptions \{ error, stdout } -> do
let root = "node_modules/@explorable-viz/fluid/"
exec ("./" <> root <> "script/bundle-website.sh -w " <> website <> " -r true") copyOptions \{ error, stdout } -> do
case error of
(Just err) -> logShow err
Nothing -> do
Expand Down

0 comments on commit 237d058

Please # to comment.