github.com/buildpacks/pack@v0.33.3-0.20240516162812-884dd1837311/acceptance/testdata/mock_buildpacks/internet-capable-buildpack/bin/build.bat (about)

     1  @echo off
     2  
     3  echo ---- Build: Internet capable buildpack
     4  
     5  ping -n 1 google.com
     6  
     7  if %ERRORLEVEL% equ 0 (
     8    echo RESULT: Connected to the internet
     9  ) else (
    10    echo RESULT: Disconnected from the internet
    11  )
    12  
    13  echo ---- Done