File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ function taskTestsReducer(taskTests, action) {
6
6
if ( taskTests === void 0 ) { taskTests = '' ; }
7
7
switch ( action . type ) {
8
8
case Type . SET_PAGE :
9
- var target = path . join ( window . coderoad . tutorialDir || window . coderoad . dir , ".tmp " + window . coderoad . suffix ) ;
9
+ var target = path . join ( window . coderoad . tutorialDir || window . coderoad . dir , "_tmp " + window . coderoad . suffix ) ;
10
10
return concat_tests_1 . concatTests ( target , action . payload . taskTests ) ;
11
11
default :
12
12
return taskTests ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import {concatTests} from './concat-tests';
6
6
export default function taskTestsReducer ( taskTests = '' , action : CR . Action ) : string {
7
7
switch ( action . type ) {
8
8
case Type . SET_PAGE :
9
- let target = path . join ( window . coderoad . tutorialDir || window . coderoad . dir , `.tmp ${ window . coderoad . suffix } ` ) ;
9
+ let target = path . join ( window . coderoad . tutorialDir || window . coderoad . dir , `_tmp ${ window . coderoad . suffix } ` ) ;
10
10
return concatTests ( target , action . payload . taskTests ) ;
11
11
default :
12
12
return taskTests ;
You can’t perform that action at this time.
0 commit comments