git-runner 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- 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