Skip to content

Commit

Permalink
Remove relative paths from config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffan153 authored Apr 12, 2024
1 parent ffbbfab commit a275ff1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
},
"files": {
"solution": [
"./%{kebab_slug}.tcl"
"%{kebab_slug}.tcl"
],
"test": [
"./%{kebab_slug}.test"
"%{kebab_slug}.test"
],
"example": [
".meta/example.tcl"
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/game-of-life/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
],
"files": {
"solution": [
"./game-of-life.tcl"
"game-of-life.tcl"
],
"test": [
"./game-of-life.test"
"game-of-life.test"
],
"example": [
".meta/example.tcl"
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/state-of-tic-tac-toe/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
],
"files": {
"solution": [
"./state-of-tic-tac-toe.tcl"
"state-of-tic-tac-toe.tcl"
],
"test": [
"./state-of-tic-tac-toe.test"
"state-of-tic-tac-toe.test"
],
"example": [
".meta/example.tcl"
Expand Down

0 comments on commit a275ff1

Please sign in to comment.