egads 3.1.1 → 3.1.2
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.
- data/lib/egads/command/build.rb +1 -1
- data/lib/egads/version.rb +1 -1
- metadata +1 -1
data/lib/egads/command/build.rb
CHANGED
|
@@ -34,7 +34,7 @@ module Egads
|
|
|
34
34
|
def commit_extra_paths
|
|
35
35
|
extra_paths = ["REVISION"]
|
|
36
36
|
extra_paths += Config.build_extra_paths
|
|
37
|
-
run_with_code("git add -f #{extra_paths * ' '} && git commit --no-verify -m '[egads seed] [skip
|
|
37
|
+
run_with_code("git add -f #{extra_paths * ' '} && git commit --no-verify -m '[egads seed] [ci skip]'")
|
|
38
38
|
# Get the build SHA
|
|
39
39
|
self.build_sha = run_with_code("git rev-parse --verify HEAD").strip
|
|
40
40
|
run_with_code "git reset #{sha}" # Reset to original SHA
|
data/lib/egads/version.rb
CHANGED