Subversion Repositories DevTools

Rev

Rev 6559 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6559 Rev 6564
Line 43... Line 43...
43
 
43
 
44
#
44
#
45
#   Package Post Install Process for known packages
45
#   Package Post Install Process for known packages
46
#   These packages are generally build system related
46
#   These packages are generally build system related
47
#
47
#
48
if [ "$2" = "core_devl" -o "$2" = "buildtool"  -o "$2" = "jats-installer" -o "$2" = "generate_release_notes"] ; then
48
if [ "$2" = "core_devl" -o "$2" = "buildtool"  -o "$2" = "jats-installer" -o "$2" = "generate_release_notes" ] ; then
49
    if [ -f "$PKGDIR/PostInstall.sh" ]; then
49
    if [ -f "$PKGDIR/PostInstall.sh" ]; then
50
      echo "PostInstall script found"
50
      echo "PostInstall script found"
51
      ( cd "$PKGDIR"; chmod +x PostInstall.sh; ./PostInstall.sh "$archive" "$2" "$3" )
51
      ( cd "$PKGDIR"; chmod +x PostInstall.sh; ./PostInstall.sh "$archive" "$2" "$3" )
52
      echo "PostInstall script execution complete"
52
      echo "PostInstall script execution complete"
53
    fi
53
    fi