mirror of https://github.com/acidanthera/audk.git
modify output path
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1377 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
969afc266e
commit
99f70980b4
|
@ -24,7 +24,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
|
||||||
*/
|
*/
|
||||||
private static final long serialVersionUID = 207759413522910399L;
|
private static final long serialVersionUID = 207759413522910399L;
|
||||||
|
|
||||||
private String modulepath;
|
private String startpath;
|
||||||
private ModuleInfo mi;
|
private ModuleInfo mi;
|
||||||
|
|
||||||
private JButton moduleButton, goButton, msaEditorButton, criticButton;
|
private JButton moduleButton, goButton, msaEditorButton, criticButton;
|
||||||
|
@ -171,13 +171,13 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
|
||||||
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
if ( e.getSource() == moduleButton ) {
|
if ( e.getSource() == moduleButton ) {
|
||||||
modulepath = getFilepath("Please choose a starting path");
|
startpath = getFilepath("Please choose a starting path");
|
||||||
moduletext.setText(modulepath);
|
moduletext.setText(startpath);
|
||||||
}
|
}
|
||||||
if ( e.getSource() == goButton ) {
|
if ( e.getSource() == goButton ) {
|
||||||
try {
|
try {
|
||||||
logfile = new PrintWriter(new BufferedWriter(new FileWriter(modulepath + File.separator + "migration.log")));
|
logfile = new PrintWriter(new BufferedWriter(new FileWriter(startpath.replaceAll(Common.strseparate, "$1") + File.separator + "migration.log")));
|
||||||
ModuleInfo.triger(modulepath);
|
ModuleInfo.triger(startpath);
|
||||||
logfile.flush();
|
logfile.flush();
|
||||||
} catch (Exception en) {
|
} catch (Exception en) {
|
||||||
println(en.getMessage());
|
println(en.getMessage());
|
||||||
|
@ -192,7 +192,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList
|
||||||
}
|
}
|
||||||
if ( e.getSource() == criticButton) {
|
if ( e.getSource() == criticButton) {
|
||||||
try {
|
try {
|
||||||
Critic.fireAt(modulepath);
|
Critic.fireAt(startpath);
|
||||||
} catch (Exception en) {
|
} catch (Exception en) {
|
||||||
println(en.getMessage());
|
println(en.getMessage());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue