File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- #!/usr/bin/env node
1+ #!/usr/bin/env node --no-warnings
22
33require ( '../lib/cli' ) . run ( ) ;
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ function showCal(problems) {
168168 const idx = now . diff ( d , 'days' ) ;
169169
170170 const j = ( N_WEEKS - idx / N_WEEKDAYS + 1 ) * 2 ;
171- if ( j >= 0 ) buf . write ( MONTHS [ d . month ( ) ] , j ) ;
171+ if ( j >= 0 ) buf . write ( MONTHS [ d . month ( ) ] , ~ ~ j ) ;
172172 }
173173 log . printf ( '%7s%s' , ' ' , buf . toString ( ) ) ;
174174
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ file.userHomeDir = function() {
2525} ;
2626
2727file . homeDir = function ( ) {
28- return path . join ( this . userHomeDir ( ) , '.lc' ) ;
28+ return path . join ( this . userHomeDir ( ) , '.config/ lc' ) ;
2929} ;
3030
3131file . appDir = function ( ) {
You can’t perform that action at this time.
0 commit comments