# HG changeset patch # User wenzelm # Date 1602357562 -7200 # Node ID f5d60c12deeb2850ed500d481733462f373dfe1c # Parent d0937d55eb9051771b21c4eaf9a428d1b362a719 more standard path output (despite platform_path from d55eb82ae77b); diff -r d0937d55eb90 -r f5d60c12deeb src/Pure/System/isabelle_system.scala --- a/src/Pure/System/isabelle_system.scala Sat Oct 10 21:12:20 2020 +0200 +++ b/src/Pure/System/isabelle_system.scala Sat Oct 10 21:19:22 2020 +0200 @@ -193,13 +193,13 @@ { if (!path.is_dir) { bash("perl -e \"use File::Path make_path; make_path('" + File.standard_path(path) + "');\"") - if (!path.is_dir) error("Failed to create directory: " + quote(File.platform_path(path.absolute))) + if (!path.is_dir) error("Failed to create directory: " + path.absolute) } path } def new_directory(path: Path): Path = - if (path.is_dir) error("Directory already exists: " + quote(File.platform_path(path.absolute))) + if (path.is_dir) error("Directory already exists: " + path.absolute) else make_directory(path) def copy_dir(dir1: Path, dir2: Path): Unit =