Doxfile in shaddox-0.0.15 vs Doxfile in shaddox-0.0.16

- old
+ new

@@ -6,11 +6,11 @@ :password => 'vagrant' }, :installer => :apt } -repo :test, { +repo :profile, { :url => "https://github.com/joshglendenning/profile.git" } task :foo do sh "echo 'foo'" @@ -20,22 +20,18 @@ sh "echo 'bar'" end task :install => :foobar do install 'zsh' - sh "echo 'test'" - sh "echo 'test2'" - sh "echo 'test3'" - repo_clone :test, "dest" + repo_clone :profile, "~" + cd "~/profile" do + sh "shaddox install" + end end task :broken => :foo do sh "notacommand" end task :sudo do sh "sudo echo 'this is a sudo echo'" -end - -task :git_clone do - repo_clone :test, "~/test" end