Skip to content

Commit

Permalink
Rename ucr to unison-runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
dolio committed Feb 8, 2024
1 parent 5f946e2 commit 6703193
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions parser-typechecker/src/Unison/Runtime/Interface.hs
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ backReferenceTm ws frs irs dcm c i = do

ucrProc :: [String] -> CreateProcess
ucrProc args =
(proc "native-compiler/bin/ucr" args)
(proc "native-compiler/bin/unison-runtime" args)
{ std_in = CreatePipe,
std_out = Inherit,
std_err = Inherit
Expand Down Expand Up @@ -707,8 +707,8 @@ nativeEvalInContext _ ctx codes base = do
ucrError (_ :: IOException) =
die
"I had trouble calling the unison runtime exectuable.\n\n\
\Please check that the `ucr` executable is properly\
\ installed."
\Please check that the `unison-runtime` executable is\
\properly installed."
withCreateProcess (ucrProc []) callout `UnliftIO.catch` ucrError

nativeCompileCodes ::
Expand All @@ -731,8 +731,8 @@ nativeCompileCodes codes base path = do
ucrError (_ :: IOException) =
die
"I had trouble calling the unison runtime exectuable.\n\n\
\Please check that the `ucr` executable is properly\
\ installed."
\Please check that the `unison-runtime` executable is\
\properly installed."
racoError (_ :: IOException) =
die
"I had trouble calling the `raco` executable.\n\n\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

(define (handle-command-line)
(command-line
#:program "ucr"
#:program "unison-runtime"
#:once-any
[("-G" "--generate-file")
file
Expand Down

0 comments on commit 6703193

Please sign in to comment.