We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It says:
_GO_ROOTDIR: /absolute/path/to/project-root _GO_CORE_DIR: /absolute/path/to/project-root/scripts/go-script-bash _GO_SCRIPTS_DIR: $_GO_ROOTDIR/scripts _GO_PLUGINS_DIR: /absolute/path/to/project-root/plugins
When I think it should say
_GO_ROOTDIR: /absolute/path/to/project-root _GO_CORE_DIR: /absolute/path/to/project-root/scripts/go-script-bash _GO_SCRIPTS_DIR: $_GO_ROOTDIR/scripts _GO_PLUGINS_DIR: /absolute/path/to/project-root/scripts/plugins
And maybe could reuse the $_GO_ROOTDIR as _GO_SCRIPTS_DIR is doing it
$_GO_ROOTDIR
_GO_SCRIPTS_DIR
_GO_ROOTDIR: /absolute/path/to/project-root _GO_CORE_DIR: $_GO_ROOTDIR/scripts/go-script-bash _GO_SCRIPTS_DIR: $_GO_ROOTDIR/scripts _GO_PLUGINS_DIR: $_GO_ROOTDIR/scripts/plugins
Or not doing it at all, but do be consistent:
_GO_ROOTDIR: /absolute/path/to/project-root _GO_CORE_DIR: /absolute/path/to/project-root/scripts/go-script-bash _GO_SCRIPTS_DIR: /absolute/path/to/project-root/scripts _GO_PLUGINS_DIR: /absolute/path/to/project-root/scripts/plugins
Given that the example directory structure is:
project-root/ go - main ./go script lib/ - publicly-exported modules (if the project is a go-bash-script plugin) scripts/ (or bin/) - project (or plugin) ./go command scripts lib/ - project-specific Bash library modules (see "Modules" section) plugins/ - (optional) third-party command scripts (see `./go help plugins`) .../ bin/ - plugin ./go command scripts lib/ - publicly-exported Bash library modules (see "Modules" section) go-script-bash/ go-core.bash - top-level functions lib/ - publicly-exported Bash library modules (see "Modules" section) libexec/ - builtin ./go command scripts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It says:
When I think it should say
And maybe could reuse the
$_GO_ROOTDIR
as_GO_SCRIPTS_DIR
is doing itOr not doing it at all, but do be consistent:
Given that the example directory structure is:
The text was updated successfully, but these errors were encountered: