git-runner 0.0.1 → 0.0.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/git-runner/branch.rb +1 -1
- data/lib/git-runner/version.rb +1 -1
- metadata +1 -1
data/lib/git-runner/branch.rb
CHANGED
@@ -27,7 +27,7 @@ module GitRunner
|
|
27
27
|
# Use git to grep the current branch for instruction lines within the specific instruction file
|
28
28
|
output = Command.execute(
|
29
29
|
"cd #{repository_path}",
|
30
|
-
"git grep '^#{Configuration.instruction_prefix}' #{name}:#{Configuration.instruction_file}"
|
30
|
+
"git grep '^#{Configuration.instruction_prefix}' #{name}:#{Configuration.instruction_file} || true"
|
31
31
|
)
|
32
32
|
|
33
33
|
# Process the output to generate instructions
|
data/lib/git-runner/version.rb
CHANGED