| | |
| | | |
| | | #### Main #### |
| | | |
| | | inputPath = input("Please enter the base path of the repository: ") |
| | | userDecision = input("Should the generated changelog be stored in another location (y/n)? ").lower() |
| | | inputPath = input("Please enter the base path of the repository: ").strip() |
| | | userDecision = input("Should the generated changelog be stored in another location (y/n)? ").lower().strip() |
| | | if userDecision == "y": |
| | | outputPath = (input("Please enter the output path: ")) |
| | | outputPath = input("Please enter the output path: ").strip() |
| | | elif userDecision == "n": |
| | | print("The changelog will be stored in the same location as the repository.") |
| | | outputPath = inputPath |