all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Making file writable
@ 2020-11-27 20:19 John Soo
  2020-11-27 21:12 ` Tomás Ortín Fernández
  0 siblings, 1 reply; 5+ messages in thread
From: John Soo @ 2020-11-27 20:19 UTC (permalink / raw)
  To: Tomás Ortín Fernández; +Cc: Help-Guix

      
  

  
  
  
Hey Tomás,  

  
Check your parens:
  

  
(for-each (make-file-writable (find-files "\\.yml$")))
  

  
Should be   
  

  
(for-each   make-file-writable (find-files "\\.yml$"))
  

  
That’s because for-each is a higher order function which takes a procedure and a list.
  

  
Good luck!
  

  
- John
  

  

  
  
  
>   
>   
>   
>   
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>     
>   
>               
  

  


^ permalink raw reply	[flat|nested] 5+ messages in thread
* Making file writable
@ 2020-11-27 18:53 Tomás Ortín Fernández
  0 siblings, 0 replies; 5+ messages in thread
From: Tomás Ortín Fernández @ 2020-11-27 18:53 UTC (permalink / raw)
  To: help-guix

I'm trying to pack the updated version of rubocop (1.4.2). The problem is that a patch must be applied, and it affects two files that aren't writable, .rubocop.yml and .rubocop_todo.yml. I've tried making it writable after unpacking:

(arguments ...
...
(add-after 'unpack 'make-yml-files-writable
   (lambda _
      (let ((yml-files (find-files "\\.yml$")))
         (for-each make-file-writable yml-files))
      #t))
...)

I've tried as well doing it with a snippet:

(source ...
...
(modules '((guix build utils)))
   (snippet
     '(begin
         (for-each (make-file-writable (find-files "\\.yml$")))
         #t))
...)
However, I haven't been successful and the files remain non-writable when the patch is applied. What am I doing wrong?

Tomás


^ permalink raw reply	[flat|nested] 5+ messages in thread
* Making file writable
@ 2020-11-27 18:18 Tomás Ortín Fernández
  0 siblings, 0 replies; 5+ messages in thread
From: Tomás Ortín Fernández @ 2020-11-27 18:18 UTC (permalink / raw)
  To: help-guix

I'm trying to pack the updated version of rubocop (1.4.2). The problem is that a patch must be applied, and it affects two files that aren't writable, .rubocop.yml and .rubocop_todo.yml. I've tried making it writable after unpacking:

(arguments ...
...
(add-after 'unpack 'make-yml-files-writable
   (lambda _
      (let ((yml-files (find-files "\\.yml$")))
         (for-each make-file-writable yml-files))
      #t))
...)

I've tried as well doing it with a snippet:

(source ...
...
(modules '((guix build utils)))
   (snippet
     '(begin
         (for-each (make-file-writable (find-files "\\.yml$")))
         #t))
...)
However, I haven't been successful and the files remain non-writable when the patch is applied. What am I doing wrong?

Tomás


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-27 23:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-27 20:19 Making file writable John Soo
2020-11-27 21:12 ` Tomás Ortín Fernández
2020-11-27 23:22   ` John Soo
  -- strict thread matches above, loose matches on Subject: below --
2020-11-27 18:53 Tomás Ortín Fernández
2020-11-27 18:18 Tomás Ortín Fernández

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.