diff options
| author | mo khan <mo.khan@gmail.com> | 2020-06-20 15:55:52 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-06-20 15:55:52 -0600 |
| commit | aa3fcf781a1ee79addce7afb2fc4c7498a2be822 (patch) | |
| tree | bcccebc892fa6919f9256ad56effcadaf78230ee | |
| parent | a3f7cfb387e643b829133d67b7b6efac68e04992 (diff) | |
Create plugins directory
| -rw-r--r-- | config/software/asdf-ruby-plugin.rb | 4 | ||||
| -rw-r--r-- | config/software/preparation.rb | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/config/software/asdf-ruby-plugin.rb b/config/software/asdf-ruby-plugin.rb index 8dbfb58..5340d3b 100644 --- a/config/software/asdf-ruby-plugin.rb +++ b/config/software/asdf-ruby-plugin.rb @@ -1,10 +1,10 @@ name "asdf-ruby-plugin" -description "the steps required to prepare the build" +description "Ruby plugin for asdf version manager" source git: "https://github.com/asdf-vm/asdf-ruby.git" relative_path "ruby" license_file "#{project_dir}/LICENSE" -skip_transitive_dependency_licensing true +#skip_transitive_dependency_licensing true build do block do diff --git a/config/software/preparation.rb b/config/software/preparation.rb index 816c073..bf3401d 100644 --- a/config/software/preparation.rb +++ b/config/software/preparation.rb @@ -12,7 +12,8 @@ build do sync "#{project_dir}/bin", "#{install_dir}/bin" sync "#{project_dir}/lib", "#{install_dir}/lib" command "echo 'legacy_version_file = yes' > #{install_dir}/defaults" - touch "#{install_dir}/installs/.gitkeep" + touch "#{install_dir}/installs/.keep" + touch "#{install_dir}/plugins/.keep" #touch "#{install_dir}/embedded/lib/.gitkeep" #touch "#{install_dir}/embedded/bin/.gitkeep" #touch "#{install_dir}/bin/.gitkeep" |
