src/Pure/System/isabelle_system.scala
changeset 71123 6ab4a5fb82e1
parent 71119 30ed6786d775
child 71358 ec48da635e6c
--- 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 */