mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
make *.sh files executable after copying
This commit is contained in:
parent
3770db1756
commit
7098c1d5dc
1 changed files with 4 additions and 1 deletions
|
|
@ -47,6 +47,9 @@
|
|||
(format t "~©ing file: ~A" to)
|
||||
(ensure-directories-exist to)
|
||||
(unless (copy-file from to)
|
||||
(error "File ~A could not be copied." to))))))
|
||||
(error "File ~A could not be copied." to))
|
||||
#+unix
|
||||
(when (string= "sh" (pathname-type to))
|
||||
(ext:run-program "chmod" (list "+x" to)))))))
|
||||
|
||||
(terpri)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue