fix: correct the ordering of application args
Signed-off-by: ComixHe <heyuming@deepin.org>
This commit is contained in:
		@ -296,7 +296,7 @@ ApplicationService::Launch(const QString &action, const QStringList &fields, con
 | 
				
			|||||||
        // don't change this sequence
 | 
					        // don't change this sequence
 | 
				
			||||||
        cmds.push_back("deepin-terminal");
 | 
					        cmds.push_back("deepin-terminal");
 | 
				
			||||||
        cmds.push_back("--keep-open");  // keep terminal open, prevent exit immediately
 | 
					        cmds.push_back("--keep-open");  // keep terminal open, prevent exit immediately
 | 
				
			||||||
        cmds.push_front("-e");          // run all original execution commands in deepin-terminal
 | 
					        cmds.push_back("-e");           // run all original execution commands in deepin-terminal
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    auto &jobManager = parent()->jobManager();
 | 
					    auto &jobManager = parent()->jobManager();
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user