You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by jv...@apache.org on 2004/07/06 13:56:46 UTC

cvs commit: maven-components/maven-core-it maven-core-it.sh

jvanzyl     2004/07/06 04:56:46

  Modified:    maven-core-it maven-core-it.sh
  Log:
  o using sh to invoke the hooks so that they don't need to be set +x
  
  Revision  Changes    Path
  1.10      +2 -2      maven-components/maven-core-it/maven-core-it.sh
  
  Index: maven-core-it.sh
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-core-it/maven-core-it.sh,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- maven-core-it.sh	19 Jun 2004 18:13:25 -0000	1.9
  +++ maven-core-it.sh	6 Jul 2004 11:56:46 -0000	1.10
  @@ -30,7 +30,7 @@
       if [ -f prebuild.hook ]
       then
         echo      
  -      ./prebuild.hook
  +       sh prebuild.hook
         echo
       fi
       
  @@ -39,7 +39,7 @@
       if [ -f postbuild.hook ]
       then    
         echo
  -      ./postbuild.hook
  +      sh postbuild.hook
         echo
       fi