home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / python / runtime.d / pycentral.rtinstall next >
Encoding:
Text File  |  2006-08-15  |  264 b   |  14 lines

  1. #! /bin/sh -e
  2.  
  3. cmd="$1"
  4. runtime="$2"
  5. oldversion="$3"
  6. newverison="$4"
  7.  
  8. if which python >/dev/null 2>&1 && which pycentral >/dev/null 2>&1; then
  9.     pycentral rtinstall $runtime
  10. else
  11.     echo >&2 "python or pycentral not found in $(basename $0) hook."
  12.     exit 1
  13. fi
  14.