grim/convey

Fix issues codespell found
redux
2021-12-20, Gary Kramlich
1c24cc3b756f
Fix issues codespell found
--- a/ChangeLog Mon Dec 20 11:55:09 2021 -0600
+++ b/ChangeLog Mon Dec 20 11:57:22 2021 -0600
@@ -12,7 +12,7 @@
directory is now created next to the convey.yml file that's being run so
disk space issues could arise.
-0.14.0: abandonded
+0.14.0: abandoned
* This version grew out of control and was past the point of saving. We
decided to throw the entire thing out and move on to 0.15.0 instead of
trying to save this ill conceived version.
@@ -58,7 +58,7 @@
0.11.0: 20171015
* Added a quiet option to Remove tasks. Fixed #131. PR #31 (Eric Fritz)
- * Added an environment task for updating environment varables. Fixed #128. PR #32 (Eric Fritz)
+ * Added an environment task for updating environment variables. Fixed #128. PR #32 (Eric Fritz)
* Don't pass empty environment variables to Runs tasks. PR #35 (Eric Fritz)
* Fix an infinite loop in variable expansion. Fixed #130. PR #33 (Eric Fritz)
* Fix scripts being left around if convey receives SIGINT. Fixed #102. PR #34 (Eric Fritz)
@@ -146,7 +146,7 @@
(fixes #75)
* Fixed an issue where the convey/go-build images would fail on go get if
the package didn't have an sources files in it's root.
- * Fixed all go get's to ignore vendor directories (fixes #73)
+ * Fixed all go gets to ignore vendor directories (fixes #73)
* Fixed subshell's in script commands (fixes #51, #74)
0.3.2: 20170330
--- a/docker/README.md Mon Dec 20 11:55:09 2021 -0600
+++ b/docker/README.md Mon Dec 20 11:57:22 2021 -0600
@@ -291,10 +291,10 @@
### Attributes
-| Name | Required | Default | Description |
-| ---------- | -------- | ------- | ----------- |
-| source | Yes | | The full source image including the registry and tag to tag. |
-| detination | Yes | | The destination tag include the registry and tag to create. |
+| Name | Required | Default | Description |
+| ----------- | -------- | ------- | ----------- |
+| source | Yes | | The full source image including the registry and tag to tag. |
+| destination | Yes | | The destination tag include the registry and tag to create. |
### Example
--- a/podman/README.md Mon Dec 20 11:55:09 2021 -0600
+++ b/podman/README.md Mon Dec 20 11:57:22 2021 -0600
@@ -15,7 +15,7 @@
| ------------- | -------- | ------------------- | ----------- |
| annotations | | | A list of annotations for the container image. |
| containerfile | Yes | | The containerfile to build. |
-| context | | ${CONVEY_WORKSPACE} | The context to pass to podman build. This path needs to build under the convery workspace which means all files for the build must first be imported into the workspace. |
+| context | | ${CONVEY_WORKSPACE} | The context to pass to podman build. This path needs to build under the convey workspace which means all files for the build must first be imported into the workspace. |
| tags | | | A list of tags or a single tag to be applied to the image. |
| target | | | The name of the target to build in a multi stage containerfile. |
--- a/podman/run.go Mon Dec 20 11:55:09 2021 -0600
+++ b/podman/run.go Mon Dec 20 11:57:22 2021 -0600
@@ -58,7 +58,7 @@
func (r *Run) Execute(name string, logger *log.Entry, stageEnv environment.Environment, rt *runtime.Runtime) error {
// Create a new environment based on the stage's environment. Then merge
// the task's environment overriding anything from the stage. Finally merge
- // the runtime enviroment which holds the environment from the command line.
+ // the runtime environment which holds the environment from the command line.
env := stageEnv.Copy().MergeSlice(r.Environment).Merge(rt.Environment)
// Figure out where we're mounting the workspace. This should be done
--- a/script/shell.go Mon Dec 20 11:55:09 2021 -0600
+++ b/script/shell.go Mon Dec 20 11:57:22 2021 -0600
@@ -26,7 +26,7 @@
func (s *Shell) Execute(name string, logger *log.Entry, stageEnv environment.Environment, rt *runtime.Runtime) error {
// Create a new environment based on the stage's environment. Then merge
// the task's environment overriding anything from the stage. Finally merge
- // the runtime enviroment which holds the environment from the command line.
+ // the runtime environment which holds the environment from the command line.
env := stageEnv.Copy().MergeSlice(s.Environment).Merge(rt.Environment)
filename := filepath.Join(rt.ConfigPath, s.Filename)