We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3139d59 commit aad37b6Copy full SHA for aad37b6
lib/bashly/commands/add.rb
@@ -116,7 +116,7 @@ def add_lib(name, *args)
116
created = safe_write file[:path], file[:content]
117
files_created += 1 if created
118
end
119
-
+
120
message = library.post_install_message
121
say "\n#{message}" if message && files_created.positive?
122
lib/bashly/library.rb
@@ -17,7 +17,7 @@ def files
17
config['files'].map do |file|
18
{
19
path: file['target'] % target_file_args,
20
- content: File.read("#{path}/#{file['source']}")
+ content: File.read("#{path}/#{file['source']}"),
21
}
22
23
0 commit comments