Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2013-12-24 19:34:20 +0400
committerGleb Mazovetskiy <glex.spb@gmail.com>2013-12-24 19:34:20 +0400
commit8fd6f541669bd18710a03689b48f9151265294ae (patch)
tree55ccaa6f189b9365461f7856e154f3a6b73755f8 /tasks
parenta1de184fcbf653fba918cbf648f5161d8b91f106 (diff)
fix
Diffstat (limited to 'tasks')
-rwxr-xr-xtasks/update-version2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/update-version b/tasks/update-version
index c6f5566..8ab4d77 100755
--- a/tasks/update-version
+++ b/tasks/update-version
@@ -21,6 +21,6 @@ Dir.chdir File.expand_path('..', File.dirname(__FILE__)) do
end
%w(bower.json).each do |path|
src = File.read(path)
- File.write path, src.gsub(/version_semver/, new_version_semver)
+ File.write path, src.gsub(version_semver, new_version_semver)
end
end