oxen_deployer_git 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. data/lib/oxen_deployer/git.rb +11 -2
  2. metadata +1 -1
@@ -1,7 +1,7 @@
1
1
  class OxenDeployer::Git
2
2
 
3
3
  # Duh.
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
 
6
6
  set :source, OxenDeployer::Git.new
7
7
  set :git_cmd, "git"
@@ -17,7 +17,7 @@ class OxenDeployer::Git
17
17
 
18
18
  if fast_checkout_applicable?(revision, destination)
19
19
  [ "cd #{destination}",
20
- "#{git_cmd} checkout -q origin",
20
+ "#{git_cmd} checkout #{revision}",
21
21
  "#{git_cmd} fetch",
22
22
  "#{git_cmd} reset --hard #{new_revision}",
23
23
  submodule_cmd,
@@ -25,6 +25,15 @@ class OxenDeployer::Git
25
25
  "#{git_cmd} checkout deployed-#{revision}",
26
26
  "cd -"
27
27
  ].join(" && ")
28
+ # [ "cd #{destination}",
29
+ # "#{git_cmd} checkout -q origin",
30
+ # "#{git_cmd} fetch",
31
+ # "#{git_cmd} reset --hard #{new_revision}",
32
+ # submodule_cmd,
33
+ # "#{git_cmd} branch -f deployed-#{revision} #{revision}",
34
+ # "#{git_cmd} checkout deployed-#{revision}",
35
+ # "cd -"
36
+ # ].join(" && ")
28
37
  else
29
38
  [ "rm -rf #{destination}",
30
39
  "mkdir -p #{destination}",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oxen_deployer_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: