buildtasks 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/lib/buildtasks/git_buildpackage/tasks.rb +1 -1
- data/lib/buildtasks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7591167affc17aa0fb75389ffafb798f98a79c3
|
4
|
+
data.tar.gz: bcbc54f062f38c8b898b9f73584d2e4b2e7e7db6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92cc8a899e8e6731537eaa0ce03f537fe11109583e963866128e2775db75f43523ce1e365e3b3008c75f9de0d707fc92a6c202025fe1eb92bc847b8cb39d7161
|
7
|
+
data.tar.gz: 486f4c31dcb41a9b51febd45f6c1d0600d55ac9dcffc3cd63ec829bf3eb8f659dbfc8e9f83438b5df63a26773f7af6f3487d93e3ba67072eacf0ad92539866bf
|
@@ -121,7 +121,7 @@ module BuildTasks
|
|
121
121
|
path = `which git-buildpackage`
|
122
122
|
return [path.strip] if $CHILD_STATUS.success?
|
123
123
|
path = `which gbp`
|
124
|
-
return [path.strip, "buildpackage"] if
|
124
|
+
return [path.strip, "buildpackage"] if $CHILD_STATUS.success?
|
125
125
|
raise "git-buildpackage command not found"
|
126
126
|
end
|
127
127
|
end
|
data/lib/buildtasks/version.rb
CHANGED