This repository was archived by the owner on Apr 8, 2020. It is now read-only.
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) {
66 if ( taskTests === void 0 ) { taskTests = '' ; }
77 switch ( action . type ) {
88 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 ) ;
1010 return concat_tests_1 . concatTests ( target , action . payload . taskTests ) ;
1111 default :
1212 return taskTests ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import {concatTests} from './concat-tests';
66export default function taskTestsReducer ( taskTests = '' , action : CR . Action ) : string {
77 switch ( action . type ) {
88 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 } ` ) ;
1010 return concatTests ( target , action . payload . taskTests ) ;
1111 default :
1212 return taskTests ;
You can’t perform that action at this time.
0 commit comments