src/Pure/System/isabelle_system.scala
changeset 71119 30ed6786d775
parent 71114 6cfec8029831
child 71123 6ab4a5fb82e1
--- a/src/Pure/System/isabelle_system.scala	Thu Nov 14 11:49:54 2019 +0100
+++ b/src/Pure/System/isabelle_system.scala	Thu Nov 14 12:42:06 2019 +0100
@@ -152,10 +152,10 @@
   /* permissions */
 
   def chmod(arg: String, path: Path): Unit =
-    bash("chmod " + Bash.string(arg) + " -- " + File.bash_path(path)).check
+    bash("chmod " + Bash.string(arg) + " " + File.bash_path(path)).check
 
   def chown(arg: String, path: Path): Unit =
-    bash("chown " + Bash.string(arg) + " -- " + File.bash_path(path)).check
+    bash("chown " + Bash.string(arg) + " " + File.bash_path(path)).check
 
 
   /* directories */