This file has been truncated, but you can view the full file.
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
$ git --git-dir hive.git/ fsck --unreachable | |
Checking object directories: 100% (256/256), done. | |
Checking objects: 100% (3226/3226), done. | |
unreachable blob 1fc0d6f698295567da02ca0512b08fb7a1ae9734 | |
unreachable tree f5c2ab4a8ef13584d9c8b516e16698b588c5b826 | |
unreachable commit 4583a47e7d754b298b8effea347774ced2676685 | |
unreachable tree 87831c99c83ba2ec9843bde5888db0d4154cc3ad | |
unreachable tag fdc342e458646c631685121ab1c40ec8df78a126 | |
unreachable tree 19044b3e18d8318f6038a046816c3bc4da0aa64a | |
unreachable commit da05e44364553ed4d7e4ea483218b991358c43ed |
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/Formula/p7zip.rb b/Formula/p7zip.rb | |
index a102437388..0e97ac74ee 100644 | |
--- a/Formula/p7zip.rb | |
+++ b/Formula/p7zip.rb | |
@@ -12,11 +12,18 @@ class P7zip < Formula | |
sha256 "78981de13a763ab595e073360e2848ca0ad65d9a13b7f7728e0c255945cdd00e" => :mavericks | |
end | |
+ option "with-nsis-decompiler", "Build with NSIS decompiler support" | |
+ |
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
// | |
// nsec17_badge_client.swift | |
// BadgeClient | |
// | |
// Created by Marc-Etienne M.Léveillé on 2017-05-16. | |
// Copyright © 2017 NorthSec. All rights reserved. | |
// License: BSD 2-clause | |
// | |
import Foundation |
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
SYMCRASH=/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash | |
OUTPUT_FOLDER="$HOME/Crash Reports" | |
mkdir -p "$OUTPUT_FOLDER" | |
for f in "$@" | |
do | |
$SYMCRASH -o "$OUTPUT_FOLDER/$(basename "$f")" "$f" | |
done |
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
#!/bin/sh | |
# Copyright 2010 Edovia. All rights reserved. | |
# Created by Marc-Etienne M.Léveillé on 02-08-10 | |
function exit_with_message { | |
echo $1 | |
exit 1 | |
} | |
if [ $UID -ne 0 ]; then |