Last change
on this file since 62725 was 48961, checked in by vboxsync, 11 years ago |
tools: scm cleaning up...
|
-
Property svn:eol-style
set to
CRLF
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
1 | @echo off
|
---|
2 | rem $Id: gen-slickedit-workspace.cmd 48961 2013-10-07 22:17:08Z vboxsync $
|
---|
3 | rem rem @file
|
---|
4 | rem Windows NT batch script for launching gen-slickedit-workspace.sh
|
---|
5 | rem
|
---|
6 |
|
---|
7 | rem
|
---|
8 | rem Copyright (C) 2009-2011 Oracle Corporation
|
---|
9 | rem
|
---|
10 | rem This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | rem available from http://www.virtualbox.org. This file is free software;
|
---|
12 | rem you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | rem General Public License (GPL) as published by the Free Software
|
---|
14 | rem Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | rem VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | rem hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | rem
|
---|
18 |
|
---|
19 |
|
---|
20 | setlocal ENABLEEXTENSIONS
|
---|
21 | setlocal
|
---|
22 |
|
---|
23 | rem
|
---|
24 | rem gen-slickedit-workspace.sh should be in the same directory as this script.
|
---|
25 | rem
|
---|
26 | set MY_SCRIPT=%~dp0gen-slickedit-workspace.sh
|
---|
27 | if exist "%MY_SCRIPT%" goto found
|
---|
28 | echo gen-slickedit-workspace.cmd: failed to find gen-slickedit-workspace.sh in "%~dp0".
|
---|
29 | goto end
|
---|
30 |
|
---|
31 | rem
|
---|
32 | rem Found it, convert slashes and tell kmk_ash to interpret it.
|
---|
33 | rem
|
---|
34 | :found
|
---|
35 | set MY_SCRIPT=%MY_SCRIPT:\=/%
|
---|
36 | set MY_ARGS=%*
|
---|
37 | if ".%MY_ARGS%." NEQ ".." set MY_ARGS=%MY_ARGS:\=/%
|
---|
38 | kmk_ash %MY_SCRIPT% --windows-host %MY_ARGS%
|
---|
39 |
|
---|
40 | :end
|
---|
41 | endlocal
|
---|
42 | endlocal
|
---|
43 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.