clarified signature: allow compound arg;
authorwenzelm
Thu, 14 Nov 2019 13:40:21 +0100
changeset 71123 6ab4a5fb82e1
parent 71122 730090397e0d
child 71124 7dbadecdc118
clarified signature: allow compound arg;
src/Pure/System/isabelle_system.scala
--- a/src/Pure/System/isabelle_system.scala	Thu Nov 14 13:20:09 2019 +0100
+++ b/src/Pure/System/isabelle_system.scala	Thu Nov 14 13:40:21 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 " + 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 " + arg + " " + File.bash_path(path)).check
 
 
   /* directories */