Skip to content

Commit 1b7d20b

Browse files
committed
update step ids
Signed-off-by: shmck <[email protected]>
1 parent 0765174 commit 1b7d20b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/parse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function parse(params: ParseParams): any {
150150
...mdStep,
151151
};
152152

153-
const stepSetupKey = `${step.id}Q`;
153+
const stepSetupKey = `${step.id}:T`;
154154
if (params.commits[stepSetupKey]) {
155155
if (!step.setup) {
156156
step.setup = {
@@ -160,7 +160,7 @@ export function parse(params: ParseParams): any {
160160
step.setup.commits = params.commits[stepSetupKey];
161161
}
162162

163-
const stepSolutionKey = `${step.id}A`;
163+
const stepSolutionKey = `${step.id}:S`;
164164
if (params.commits[stepSolutionKey]) {
165165
if (!step.solution) {
166166
step.solution = {

0 commit comments

Comments
 (0)