Skip to content

Commit

Permalink
Don’t have tar output everything on extracting during build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Quintus committed Jun 2, 2015
1 parent 969daf9 commit 5c0ad2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsc/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ task :release do
# this ensures the code compiles.
mkdir "native"
cd "native" do
sh "tar -xvJf '#{source_tarball}'"
sh "tar -xJf '#{source_tarball}'"
cd "TSC-#{version}/tsc" do
mkdir "build"
cd "build" do
Expand All @@ -214,7 +214,7 @@ task :release do
# Now create the Windows setup installer
mkdir "win32"
cd "win32" do
sh "tar -xvJf '#{source_tarball}'"
sh "tar -xJf '#{source_tarball}'"
cd "TSC-#{version}/tsc" do
mkdir "crossbuild"
cd "crossbuild" do
Expand Down

0 comments on commit 5c0ad2f

Please sign in to comment.