Skip to content

Commit c1872aa

Browse files
authored
Merge pull request #30 from ischaaf/master
updated readme, I'm a contributor now!
2 parents 8997ff8 + 5822f26 commit c1872aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function fetch-s3-package () {
165165
166166
## Configuration at the top
167167
168-
Extract configuration and parameters into environment variables, place these at the top of your script. This will help anyone looking at your `Bakefile` or libraries understand what configuration options you're using and how to set or override them.
168+
Extract configuration and parameters into environment variables, place these at the top of your script. This will help anyone looking at your `Bakefile` or libraries understand what configuration options you're using and how to set or override them.
169169
170170
```sh
171171
# config/development.env
@@ -183,7 +183,7 @@ CONFIG="${CONFIG:-config/development.env}"
183183
184184
function init () {
185185
if [ ! -e "$CONFIG" ]; then
186-
bake_echo_red "Error: please copy $CONFIG.template to $CONFIG and
186+
bake_echo_red "Error: please copy $CONFIG.template to $CONFIG and
187187
bake_echo_red "fill in the required paramters."
188188
return 1
189189
fi
@@ -280,7 +280,7 @@ function alembic () {
280280
281281
## Namespaces
282282
283-
`bash` technically doesn't have namespaces for functions, yet it allows for periods `.` and colons `:` in the names of shell functions. Using these allows us to get many of the benefits of namespaces.
283+
`bash` technically doesn't have namespaces for functions, yet it allows for periods `.` and colons `:` in the names of shell functions. Using these allows us to get many of the benefits of namespaces.
284284
285285
Here's an example of using colons `:` for namespacing
286286
@@ -333,6 +333,7 @@ bake make-release
333333
# Contributors
334334
335335
* Kyle Burton <kyle.burton@gmail.com>
336+
* Isaac Schaaf <zeekus99@gmail.com>
336337
337338
# License
338339

0 commit comments

Comments
 (0)