Skip to content

Commit 117d2a6

Browse files
committed
bugfix - fix off-by-one in debugging code
1 parent 64e9791 commit 117d2a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/sass.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export async function compileSass(
186186
);
187187
scssInput = scssToWrite.join("\n");
188188
Deno.writeTextFileSync(
189-
`${saveScssPrefix}-${counter}.scss`,
189+
`${saveScssPrefix}-${counter - 1}.scss`,
190190
scssInput,
191191
);
192192
}

0 commit comments

Comments
 (0)