VirtualBox

source: vbox/trunk/tools/bin/backport-merge.cmd

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to CRLF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1@echo off
2rem $Id: backport-merge.cmd 98103 2023-01-17 14:15:46Z vboxsync $
3rem rem @file
4rem Windows NT batch script for launching backport-merge.sh
5rem
6
7rem
8rem Copyright (C) 2009-2023 Oracle and/or its affiliates.
9rem
10rem This file is part of VirtualBox base platform packages, as
11rem available from https://www.virtualbox.org.
12rem
13rem This program is free software; you can redistribute it and/or
14rem modify it under the terms of the GNU General Public License
15rem as published by the Free Software Foundation, in version 3 of the
16rem License.
17rem
18rem This program is distributed in the hope that it will be useful, but
19rem WITHOUT ANY WARRANTY; without even the implied warranty of
20rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21rem General Public License for more details.
22rem
23rem You should have received a copy of the GNU General Public License
24rem along with this program; if not, see <https://www.gnu.org/licenses>.
25rem
26rem SPDX-License-Identifier: GPL-3.0-only
27rem
28
29setlocal ENABLEEXTENSIONS
30setlocal
31
32rem
33rem svn-ps.sh should be in the same directory as this script.
34rem
35set MY_SCRIPT=%~dp0backport-merge.sh
36if exist "%MY_SCRIPT%" goto found
37echo backport-merge.sh: failed to find backport-merge.sh in "%~dp0".
38goto end
39
40rem
41rem Found it, convert slashes and tell kmk_ash to interpret it.
42rem
43:found
44set MY_SCRIPT=%MY_SCRIPT:\=/%
45set MY_ARGS=%*
46if ".%MY_ARGS%." NEQ ".." set MY_ARGS=%MY_ARGS:\=/%
47kmk_ash %MY_SCRIPT% %MY_ARGS%
48
49:end
50endlocal
51endlocal
52
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use