Sha256: f305bf8fdae07ae68a442d5f690a283a922eaa760d2cc59d2e0bdc175bf9a290

Contents?: true

Size: 744 Bytes

Versions: 19

Compression:

Stored size: 744 Bytes

Contents

@echo off


setlocal


REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
SET CHK_SERVICE_HOME=_%AWS_CLOUDFORMATION_HOME%
SET SERVICE_HOME=%AWS_CLOUDFORMATION_HOME%


if "%CHK_SERVICE_HOME:"=%" == "_" goto SERVICE_HOME_MISSING


SET SERVICE_HOME="%SERVICE_HOME:"=%"


:ARGV_LOOP
IF (%1) == () GOTO ARGV_DONE
REM Get around strange quoting bug
SET ARGV=%ARGV% %1
SHIFT
GOTO ARGV_LOOP
:ARGV_DONE


REM run
%SERVICE_HOME%\bin\service.cmd %ARGV%
goto DONE


:SERVICE_HOME_MISSING
echo AWS_CLOUDFORMATION_HOME is not set
exit /b 1


:DONE
endlocal

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
cloudformation-ruby-dsl-0.5.4 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.5.3 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.5.2 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.5.1 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.5.0 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.14 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.13 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.12 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.11 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.10 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.9 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.8 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.7 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.6 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.5 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.4 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.3 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.2 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd
cloudformation-ruby-dsl-0.4.1 vendor/AWSCloudFormation-1.0.12/bin/cfn-cmd.cmd