This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###DutchSec Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by DutchSec or | |
its affiliates (“DutchSec”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing | |
any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, | |
feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to | |
DutchSec in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this | |
Agreement, please contact [email protected]. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/binr/Makefile b/binr/Makefile | |
index e9876a2..ef0e7d6 100644 | |
--- a/binr/Makefile | |
+++ b/binr/Makefile | |
@@ -14,6 +14,8 @@ BINS=rax2 rasm2 rabin2 rahash2 radiff2 radare2 rafind2 rarun2 ragg2 r2agent | |
# this command needs more love to bring it back | |
#BINS+=ranal2 | |
+LIBR2=$(call libname-version,libr2.$(EXT_SO),${LIBVERSION}) | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.directive 'ngInitial', -> | |
restrict: 'A' | |
controller: ['$scope', '$element', '$attrs', '$parse', ($scope, $element, $attrs, $parse) -> | |
val = $attrs.sbInitial || $element.val() | |
getter = $parse($attrs.ngModel) | |
setter = getter.assign | |
setter($scope, val) | |
] |