summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2024-05-24 18:41:33 -0600
committermo khan <mo@mokhan.ca>2024-05-24 18:41:33 -0600
commitaa193e2f7d0030253d0e99f2823482b9f3c47f15 (patch)
tree65eec9a272506f41c4cb6f8aeadab6516fc30f80 /bin
parent97cd241fb23a3803b970e6d4dd8902e64a097ed3 (diff)
sort by addressHEADmain
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build b/bin/build
index 856f609..6455b9d 100755
--- a/bin/build
+++ b/bin/build
@@ -123,7 +123,7 @@ class Property
end
def <=>(other)
- [self[:comm_code], self[:address]] <=> [other[:comm_code], other[:address]]
+ self[:address] <=> other[:address]
end
class << self