Cleaned script

This commit is contained in:
Denis Merigoux 2020-12-26 18:54:28 +01:00
parent f966fc87d0
commit 92c0c58c9b
2 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,6 @@ scp examples/tutoriel_fr/tutoriel_fr.html $1/
scp grammar.html $1/
scp catala.html $1/
scp _build/default/src/catala_web/catala_web.bc.js $1/playground/
scp bundle.js $1/playground/
scp examples/tutorial_en/tutorial_en.catala_en $1/playground/
scp examples/tutoriel_fr/tutoriel_fr.catala_fr $1/playground/
scp syntax_highlighting/en/ace/mode-catala_en.js $1/playground/

View File

@ -129,7 +129,7 @@ let driver (source_file : Pos.input_file) (debug : bool) (unstyled : bool)
match Desugared.Ast.IdentMap.find_opt name ctxt.scope_idmap with
| None ->
Errors.raise_error
(Printf.sprintf "There is no scope %s inside the program." name)
(Printf.sprintf "There is no scope \"%s\" inside the program." name)
| Some uid -> uid )
in
Cli.debug_print "Desugaring...";