Skip to content
Snippets Groups Projects
Unverified Commit 6ba9c153 authored by MaximPlusov's avatar MaximPlusov Committed by GitHub
Browse files

Fix support input files with non pdf extension (#271)

parent 026eab48
Branches
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ public class VeraCliArgParser {
final static String FIX_METADATA = OPTION_SEP + "fixmetadata"; //$NON-NLS-1$
final static String FIX_METADATA_PREFIX = OPTION_SEP + "prefix"; //$NON-NLS-1$
final static String FIX_METADATA_FOLDER = OPTION_SEP + "savefolder"; //$NON-NLS-1$
final static String NON_PDF_EXTENSION = FLAG_SEP + "nonpdfext";
final static String NON_PDF_EXTENSION = OPTION_SEP + "nonpdfext";
final static String POLICY_FILE = OPTION_SEP + "policyfile"; //$NON-NLS-1$
// final static String PROFILES_WIKI_FLAG = FLAG_SEP + "pw";
// final static String LOAD_CONFIG_FLAG = FLAG_SEP + "c";
......@@ -155,7 +155,7 @@ public class VeraCliArgParser {
@Parameter(names = { FIX_METADATA_FOLDER }, description = "Sets output directory for any fixed files.")
private String saveFolder = ""; //$NON-NLS-1$
@Parameter(names = { NON_PDF_EXTENSION }, description = "Add descryption")
@Parameter(names = { NON_PDF_EXTENSION }, description = "Select files without .pdf extension")
private Boolean nonPdfExt = false;
@Parameter(names = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment