Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Contributing

Please read the guidelines in the [contributing docs](https://contribute.freecodecamp.org/#/how-to-work-on-tutorials-that-use-coderoad) before contributings. Contributions to this project needs to follow the correct workflow.
Please read the guidelines in the [contributing docs](https://contribute.freecodecamp.org/#/how-to-work-on-tutorials-that-use-coderoad) before contributing. Contributions to this project need to follow the correct workflow.

# Change Log

Whenever something on the version branch gets changed, add the new branch name and the changes here.
Whenever a new version is created, add the new branch name and the changes here

## [v1.0.0]

Expand All @@ -14,3 +14,8 @@ Whenever something on the version branch gets changed, add the new branch name a

- Fix regex in steps `950.1` and `970.1`, to match variable in double parenthesis not preceded by `$`
- Fix test description in step `990.1`: elif -> else

## [v1.0.2]

- Move startup commands to `setup.sh`
- Run `setup.sh` on continue and reset
13 changes: 9 additions & 4 deletions coderoad.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
id: 'freeCodeCamp/learn-bash-scripting-by-building-five-programs:v1.0.0'
version: '1.0.1'
version: '1.0.2'
config:
setup:
commands:
- sudo cp ~/project/.freeCodeCamp/.bashrc ~
- ./.freeCodeCamp/setup.sh
- cd .freeCodeCamp && npm install
testRunner:
command: npm run programmatic-test
Expand All @@ -12,15 +12,20 @@ config:
directory: .freeCodeCamp
repo:
uri: https://github.com/freeCodeCamp/learn-bash-scripting-by-building-five-programs
branch: v1.0.1
branch: v1.0.2
continue:
commands:
- './.freeCodeCamp/setup.sh'
- './.freeCodeCamp/reset.sh'
reset:
commands:
- './.freeCodeCamp/setup.sh'
- './.freeCodeCamp/reset.sh'
dependencies:
- name: node
version: '>=10'
webhook:
url: 'http://freecodecamp.org/coderoad-challenge-completed'
url: 'http://freecodecamp.dev/coderoad-challenge-completed'
events:
init: false
reset: false
Expand Down
Loading