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
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2017-12-29 05:20:18 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2017-12-29 05:20:18 +0300
commitab9132f676a07a7fdc29f40968bae1940584c357 (patch)
tree4aff167bfefa7f7d1a7f008c2f3651606d9df8f3
parent6d17199c89f573cbd30d24f2585cab33ca26b9de (diff)
update: stabilize requires order
-rw-r--r--tasks/updater/js.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/updater/js.rb b/tasks/updater/js.rb
index b07febd..329db54 100644
--- a/tasks/updater/js.rb
+++ b/tasks/updater/js.rb
@@ -53,7 +53,7 @@ class Updater
end
def add(from, *tos)
- (@imports[from] ||= []).push(*tos)
+ (@imports[from] ||= []).push(*tos.sort)
end
def tsort_each_child(node, &block)