Suppress tar(1)'s output (#6694)

This commit is contained in:
Drew Stephens 2018-11-28 11:32:19 -05:00 committed by Régis Hanol
parent bfb3c4d9f9
commit 3ae4c9ab6d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ describe ThemeStore::TgzImporter do
FileUtils.mkdir('test/a')
File.write("test/a/inner", "hello world inner")
`tar -cvzf test.tar.gz test/*`
`tar -cvzf test.tar.gz test/* 2> /dev/null`
end
importer = ThemeStore::TgzImporter.new("#{@temp_folder}/test.tar.gz")