Skip to content

Commit

Permalink
adding acidentaly removed input
Browse files Browse the repository at this point in the history
  • Loading branch information
MuriloChianfa committed Oct 23, 2024
1 parent c9723d1 commit 5693476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
- **_ignore_**: Path of files to just ignore on ioncube walkthrough. _(default:
'')_
- **_skip_**: Path of files to just skip on ioncube walkthrough. _(default: '')_
- **_obfuscate_**: Type of PHP entities to obfuscate:
- **_obfuscate_**: PHP entities to obfuscate:
all,locals,functions,methods,classes,linenos,none. _(default: 'none')_
- **_obfuscation-key_**: Key to obfuscation method to apply on PHP entities.
_(default: '')_
Expand Down
4 changes: 4 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ async function run() {
customOptions += ' --binary'
}

if (inputs.comments === false) {
customOptions += ' --no-doc-comments'
}

if (inputs.createTarget !== false) {
customOptions += ' --create-target'
}
Expand Down

0 comments on commit 5693476

Please sign in to comment.