src/Pure/System/isabelle_system.scala
changeset 71119 30ed6786d775
parent 71114 6cfec8029831
child 71123 6ab4a5fb82e1
equal deleted inserted replaced
71118:2bc568573a47 71119:30ed6786d775
   150   /** file-system operations **/
   150   /** file-system operations **/
   151 
   151 
   152   /* permissions */
   152   /* permissions */
   153 
   153 
   154   def chmod(arg: String, path: Path): Unit =
   154   def chmod(arg: String, path: Path): Unit =
   155     bash("chmod " + Bash.string(arg) + " -- " + File.bash_path(path)).check
   155     bash("chmod " + Bash.string(arg) + " " + File.bash_path(path)).check
   156 
   156 
   157   def chown(arg: String, path: Path): Unit =
   157   def chown(arg: String, path: Path): Unit =
   158     bash("chown " + Bash.string(arg) + " -- " + File.bash_path(path)).check
   158     bash("chown " + Bash.string(arg) + " " + File.bash_path(path)).check
   159 
   159 
   160 
   160 
   161   /* directories */
   161   /* directories */
   162 
   162 
   163   def mkdirs(path: Path): Unit =
   163   def mkdirs(path: Path): Unit =