summaryrefslogtreecommitdiff
path: root/omnibus/jenkins/verify-chefdk.bat
blob: 9677b4a34e6ad9ca2192ce941a1f1c7db0e778b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

@ECHO OFF

cd C:\opscode\chefdk\bin

ECHO(

FOR %%b IN (
  berks
  chef
  chef-client
  kitchen
  knife
  rubocop
) DO (


  ECHO Checking for existence of binfile `%%b`...

  IF EXIST %%b (

    ECHO ...FOUND IT!

  ) ELSE (

    GOTO :error

  )
  ECHO(
)

chef verify