|
35 | 35 | reporter Reporter |
36 | 36 | } |
37 | 37 |
|
38 | | -pub const msg_invalid_output_path = "Error: Invalid path specified for the -o flag. Please provide a valid directory path where compiled files should be saved."; |
39 | | -pub const msg_invalid_input_path = "Error: Invalid path specified for the -i flag. Please provide a valid directory or file path containing the .psc scripts to compile."; |
40 | | -pub const msg_invalid_headers_path = "Error: Invalid path specified for the -h flag. Please provide a valid directory path containing header/import .psc files."; |
| 38 | +pub const msg_invalid_output_path = "Error: Invalid path specified for the -o flag. Please provide a valid directory path where compiled files should be saved." |
| 39 | +pub const msg_invalid_input_path = "Error: Invalid path specified for the -i flag. Please provide a valid directory or file path containing the .psc scripts to compile." |
| 40 | +pub const msg_invalid_headers_path = "Error: Invalid path specified for the -h flag. Please provide a valid directory path containing header/import .psc files." |
41 | 41 | pub const msg_duplicate_input_flag = "Error: Duplicate -i flag detected with the same path. Please ensure each -i flag points to a unique directory or file." |
42 | | -pub const msg_duplicate_output_flag = "Error: The -o flag has already been specified. Please provide only one output directory."; |
43 | | -pub const msg_missing_input = "Error: Missing mandatory -i flag. Please specify the directory or file containing .psc scripts to compile."; |
44 | | -pub const msg_missing_output = "Error: Missing mandatory -o flag. Please specify the directory where compiled .pex files should be saved."; |
| 42 | +pub const msg_duplicate_output_flag = "Error: The -o flag has already been specified. Please provide only one output directory." |
| 43 | +pub const msg_missing_input = "Error: Missing mandatory -i flag. Please specify the directory or file containing .psc scripts to compile." |
| 44 | +pub const msg_missing_output = "Error: Missing mandatory -o flag. Please specify the directory where compiled .pex files should be saved." |
| 45 | +pub const msg_warning_multiple_output_with_original = "Warning: Using multiple output directories with -original flag is not fully supported. Files will only be compiled to the first directory." |
45 | 46 | //TODO |
46 | | -pub const msg_wrong_number_of_arguments = "Error: Incorrect number of arguments for the command. Please refer to the documentation for the correct usage."; |
| 47 | +pub const msg_wrong_number_of_arguments = "Error: Incorrect number of arguments for the command. Please refer to the documentation for the correct usage." |
47 | 48 | //TODO |
48 | | -pub const msg_missing_or_incorrect_argument = "Error: Missing or incorrect argument. Please check the syntax of your command."; |
49 | | -pub const msg_missing_or_incorrect_command = "Error: Invalid command. Please use one of the following commands: compile, read, disassembly, create-dump, help."; |
50 | | -pub const msg_invalid_path_disassembly = "Error: Invalid path specified for the disassembly command. Please provide a valid file path for the .pex file."; |
51 | | -pub const msg_invalid_path_read = "Error: Invalid path specified for the read command. Please provide a valid file path for the .pex file."; |
52 | | -pub const msg_invalid_path_create_dump = "Error: Invalid path specified for create-dump. Please provide a valid directory path containing .pex files."; |
| 49 | +pub const msg_missing_or_incorrect_argument = "Error: Missing or incorrect argument. Please check the syntax of your command." |
| 50 | +pub const msg_missing_or_incorrect_command = "Error: Invalid command. Please use one of the following commands: compile, read, disassembly, create-dump, help." |
| 51 | +pub const msg_invalid_path_disassembly = "Error: Invalid path specified for the disassembly command. Please provide a valid file path for the .pex file." |
| 52 | +pub const msg_invalid_path_read = "Error: Invalid path specified for the read command. Please provide a valid file path for the .pex file." |
| 53 | +pub const msg_invalid_path_create_dump = "Error: Invalid path specified for create-dump. Please provide a valid directory path containing .pex files." |
53 | 54 |
|
0 commit comments