From fa58875f8813235dabe0b6a24705b26d8f307086 Mon Sep 17 00:00:00 2001 From: JesseBrault0709 <62299747+JesseBrault0709@users.noreply.github.com> Date: Mon, 15 May 2023 10:15:22 +0200 Subject: [PATCH] Fixed help messages. --- .../groovy/com/jessebrault/ssg/AbstractBuildCommand.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/main/groovy/com/jessebrault/ssg/AbstractBuildCommand.groovy b/cli/src/main/groovy/com/jessebrault/ssg/AbstractBuildCommand.groovy index 98bcd08..477d936 100644 --- a/cli/src/main/groovy/com/jessebrault/ssg/AbstractBuildCommand.groovy +++ b/cli/src/main/groovy/com/jessebrault/ssg/AbstractBuildCommand.groovy @@ -11,7 +11,7 @@ abstract class AbstractBuildCommand extends AbstractSubCommand { @CommandLine.Option( names = ['-s', '--script', '--buildScript'], - description = 'The build script file to execute, relative to the baseDir.' + description = 'The build script file to execute.' ) File buildScript = new File('ssgBuilds.groovy') @@ -24,7 +24,7 @@ abstract class AbstractBuildCommand extends AbstractSubCommand { @CommandLine.Option( names = '--buildSrcDirs', - description = 'Path(s) to director(ies) containing Groovy classes and scripts which should be visible to the main build script, relative to the baseDir.', + description = 'Path(s) to director(ies) containing Groovy classes and scripts which should be visible to the main build script.', split = ',', paramLabel = 'buildSrcDir' )