This commit is contained in:
Antonio J. Delgado 2023-11-27 18:44:52 +02:00
parent 13b00cd1cf
commit 9dabe5cb13

View file

@ -116,5 +116,12 @@ class mastodon (
command => "${mastodon_home}/.rbenv/src/configure",
cwd => "${mastodon_home}/.rbenv/",
creates => "${mastodon_home}/.rbenv/src/Makefile",
require => vcsrepo['rbenv'],
}
exec { 'make_rbenv':
command => '/usr/bin/make -C src',
cwd => "${mastodon_home}/.rbenv/",
# creates => "${mastodon_home}/.rbenv/src/Makefile",
require => Exec['configure_rbenv'],
}
}