]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/DbTools/src/org/tianocore/DbTools/DbTool.java
Changed to format of the Package and Platform list outputs.
[mirror_edk2.git] / Tools / Java / Source / DbTools / src / org / tianocore / DbTools / DbTool.java
CommitLineData
4de92764 1// @file
2// DbUpdate wrapper
3//
4// Copyright (c) 2006, Intel Corporation All rights reserved.
5//
6// This program and the accompanying materials are licensed and made
7// available under the terms and conditions of the BSD License which
8// accompanies this distribution. The full text of the license may
9// be found at http://opensource.org/licenses/bsd-license.php
10//
11// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13//
14
15package org.tianocore.DbTools;
16
17public class DbTool {
18
19 public static void main(String[] args) {
20 if (new DbCmds().DbUpdateCmdLine(args) != 0)
21 System.exit(1);
22 System.exit(0);
23 }
24}