From 3519cbb4662afcd16dfb9faa9c15f8c74836d702 Mon Sep 17 00:00:00 2001 From: Ryan Calhoun Date: Thu, 3 Mar 2016 21:35:22 -0600 Subject: [PATCH] Creating the build directory first --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f48764c..eeee4c1 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,8 @@ task :clean do rm_rf 'dist' end -file "build/cppunit_version.txt" do +directory './build' +file "build/cppunit_version.txt" => ['./build'] do sh "git describe --tags > build/cppunit_version.txt" end