revert
This commit is contained in:
parent
745db39e2c
commit
a08c557fa2
1 changed files with 7 additions and 0 deletions
|
|
@ -276,6 +276,13 @@ class SchedulerManager {
|
|||
|
||||
//======================== other process ========================//
|
||||
Future start() async {
|
||||
var zprofile = File('$userPath/.zprofile');
|
||||
if(zprofile.existsSync()) {
|
||||
_log(zprofile.readAsStringSync());
|
||||
var shell = StringBuffer('source ${zprofile.path}');
|
||||
await ProcessExecutor.start(shell);
|
||||
}
|
||||
|
||||
_log('Scheduler is running on pid [$pid].');
|
||||
while(true) {
|
||||
//매초 마다 등록된 파일이 있나 체크
|
||||
|
|
|
|||
Loading…
Reference in a new issue