Skip to content

Commit

Permalink
[#1] Udate README regarding in-place modification
Browse files Browse the repository at this point in the history
  • Loading branch information
kam800 committed Oct 23, 2018
1 parent ad3cc31 commit cdaa9dc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MachObfuscator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
D403A4F1217FACB300285492 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
D410A6CC20CF1FC3006A31E5 /* Obfuscator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Obfuscator.swift; sourceTree = "<group>"; };
D410A6CE20CF2C30006A31E5 /* URL+NibLoading.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+NibLoading.swift"; sourceTree = "<group>"; };
D412C67B214148FD00AA9A07 /* Words.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Words.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -653,6 +654,7 @@
D48B8F3B1F7FEBC200E73BBD = {
isa = PBXGroup;
children = (
D403A4F1217FACB300285492 /* README.md */,
D48B8F461F7FEBC200E73BBD /* MachObfuscator */,
D4F792591FD74E4800EE6EBE /* MachObfuscatorTests */,
D48B8F451F7FEBC200E73BBD /* Products */,
Expand Down
2 changes: 1 addition & 1 deletion MachObfuscator/Controller/Obfuscator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Obfuscator {
savable.append(nib)
}

LOGGER.info("Saving...")
LOGGER.info("Saving all the files in place...")
savable.forEach {
$0.save()
}
Expand Down
4 changes: 3 additions & 1 deletion MachObfuscator/Options/Options.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ extension Options {

static var usage: String {
return """
usage: \(CommandLine.arguments[0]) [-qvh] [-m mangler_key]
usage: \(CommandLine.arguments[0]) [-qvh] [-m mangler_key] APP_BUNDLE
Obfuscates application APP_BUNDLE in-place.
Options:
-h help screen (this screen)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ Only sample changes are shown above. MachObfuscator changes more Mach-O sections

```
$ ./MachObfuscator
usage: ./MachObfuscator [-qvh] [-m mangler_key]
usage: ./MachObfuscator [-qvh] [-m mangler_key] APP_BUNDLE
Obfuscates application APP_BUNDLE in-place.
Options:
-h help screen (this screen)
Expand Down

0 comments on commit cdaa9dc

Please sign in to comment.