summaryrefslogtreecommitdiff
path: root/lib/nixtamal.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nixtamal.ml')
-rw-r--r--lib/nixtamal.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/nixtamal.ml b/lib/nixtamal.ml
index 5aa5580..9ceaa36 100644
--- a/lib/nixtamal.ml
+++ b/lib/nixtamal.ml
@@ -98,12 +98,12 @@ let set_up ~env ?nixpkgs: nixpkgs_opt () : (unit, error) result =
Working_directory.set_up_root ();
if Manifest.exists () then
begin
- Logs.err (fun m ->
+ Logs.warn (fun m ->
m
- "Found existing ā€œ%sā€ file, so project is already set up. Quitting."
+ "Found existing ā€œ%sā€ file, so project is already set up. Skipping."
Manifest.filename
);
- Error (`Manifest `File_already_exists)
+ Ok ()
end
else
(* TODO: returns a bool for success, so what to do? *)