Skip to content

Commit 55e7d92

Browse files
committed
Merge pull request chef-boneyard#16 from jblaine/master
CHEF-4500 Don't prefix tar contents with ./ - it breaks upload to comm. ...
2 parents 2c42c6a + a409eeb commit 55e7d92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ task :bundle_cookbook, :cookbook do |t, args|
5959
FileUtils.cp_r(file_path, temp_cookbook_dir) if File.directory?(file_path)
6060
end
6161

62-
system("tar", "-C", temp_dir, "-cvzf", File.join(tarball_dir, tarball_name), "./#{args.cookbook}")
62+
system("tar", "-C", temp_dir, "-cvzf", File.join(tarball_dir, tarball_name), "#{args.cookbook}")
6363

6464
FileUtils.rm_rf temp_dir
6565
end

0 commit comments

Comments
 (0)