}
public static JMenuBar makeMenuBar(CliGuiContext cliGuiCtx) {
JMenuBar menuBar = new JMenuBar();
menuBar.add(makeDeploymentsMenu(cliGuiCtx));
menuBar.add(new ScriptMenu(cliGuiCtx));
JMenu lfMenu = makeLookAndFeelMenu(cliGuiCtx);
if (lfMenu != null) menuBar.add(lfMenu);
return menuBar;
}