dev 1.0.93 → 1.0.94
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/dev/Project.rb +1 -0
- metadata +1 -1
data/lib/dev/Project.rb
CHANGED
|
@@ -222,6 +222,7 @@ class Project < Hash
|
|
|
222
222
|
puts " no differences detected" unless has_diff
|
|
223
223
|
array_method("commit") if has_diff
|
|
224
224
|
if File.exists?(".svn")
|
|
225
|
+
call=Dev::SystemCall.new('svn update')
|
|
225
226
|
call=Dev::SystemCall.new('svn info')
|
|
226
227
|
url = call.output.match(/URL: ([\d\w\.\:\/-]+)/)[1]
|
|
227
228
|
rev = call.output.match(/Last Changed Rev: ([\d]+)/)[1]
|