Sha256: cc7b900f152d16f089e9050b36c340e9c221cd01c4a02a4fd5c3ef68b36d59ef

Contents?: true

Size: 1.77 KB

Versions: 20

Compression:

Stored size: 1.77 KB

Contents

/* 
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

   Run RC file, name is in the first arg, second arg is either PATH
   ENV  or -r or nothing 
*/

parse arg name path rest

if name = '' then do
  say 'RC file name is missing'
  exit 1
end

if rest \= '' then do
  say 'Too many parameters'
  exit 1
end

call runit name path
exit 0

runit: procedure
parse arg name path dir

if path \= '' & path \= '-r' then do
  dir = value(translate(path),,'OS2ENVIRONMENT')
  if dir = '' then return
  dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */
end

if dir = '' then dir = directory()

if path = '-r' then do /* recursive call */
  subdir = filespec('path', dir)
  if subdir \= '\' then do
    subdir = left(subdir, length(subdir)-1)
    call runit name path filespec('drive', dir) || subdir
  end
end

/* Look for the file and run it */
if right(dir, 1) \= '\' then dir = dir || '\'
rcfile = stream(dir || name, 'c', 'query exists')
if rcfile \= '' then interpret 'call "' || rcfile || '"'

return

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
tetra-2.0.6 lib/template/bundled/apache-ant-1.9.7/bin/runrc.cmd
tetra-2.0.5 lib/template/bundled/apache-ant-1.9.7/bin/runrc.cmd
tetra-2.0.4 lib/template/bundled/apache-ant-1.9.7/bin/runrc.cmd
tetra-2.0.3 lib/template/bundled/apache-ant-1.9.7/bin/runrc.cmd
tetra-2.0.2 lib/template/bundled/apache-ant-1.9.7/bin/runrc.cmd
tetra-2.0.1 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-2.0.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-1.2.2 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-1.2.1 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-1.2.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-1.1.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-1.0.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.54.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.53.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.52.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.51.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.50.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.49.0 lib/template/bundled/apache-ant-1.9.4/bin/runrc.cmd
tetra-0.48.0 lib/template/kit/apache-ant-1.9.4/bin/runrc.cmd
kvm-0.0.1.pre support/ant/bin/runrc.cmd