We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6adddf4 commit 5e6b7fdCopy full SHA for 5e6b7fd
Rakefile
@@ -12,7 +12,7 @@ rsync_args = "" # Any extra arguments to pass to rsync
12
deploy_default = "push"
13
14
# This will be configured for you when you run config_deploy
15
-deploy_branch = "gh-pages"
+deploy_branch = "master"
16
17
## -- Misc Configs -- ##
18
@@ -254,7 +254,7 @@ multitask :push do
254
puts "## Deploying branch to Github Pages "
255
puts "## Pulling any updates from Github Pages "
256
cd "#{deploy_dir}" do
257
- system "git checkout gh-pages"
+ system "git checkout #{deploy_branch}"
258
end
259
(Dir["#{deploy_dir}/*"]).each { |f| rm_rf(f) }
260
Rake::Task[:copydot].invoke(public_dir, deploy_dir)
0 commit comments