all.bat raw

   1  :: Copyright 2012 The Go Authors. All rights reserved.
   2  :: Use of this source code is governed by a BSD-style
   3  :: license that can be found in the LICENSE file.
   4  
   5  @echo off
   6  
   7  setlocal
   8  
   9  if not exist make.bat (
  10      echo all.bat must be run from go\src
  11      exit /b 1
  12  )
  13  
  14  call .\make.bat --no-banner || exit /b 1
  15  call .\run.bat --no-rebuild || exit /b 1
  16  ..\bin\go tool dist banner
  17