Author: mturk
Date: Wed Feb 26 16:11:53 2014
New Revision: 1572128
URL: http://svn.apache.org/r1572128
Log:
Ensure we use the same shell for all the toools
Modified:
tomcat/jk/trunk/tools/jkbindist.sh
tomcat/jk/trunk/tools/signfile.sh
Modified: tomcat/jk/trunk/tools/jkbindist.sh
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/jkbindist.sh?rev=1572128&r1=1572127&r2=1572128&view=diff
==============================================================================
--- tomcat/jk/trunk/tools/jkbindist.sh (original)
+++ tomcat/jk/trunk/tools/jkbindist.sh Wed Feb 26 16:11:53 2014
@@ -1,5 +1,4 @@
-#!/bin/ksh
-
+#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
@@ -126,11 +125,10 @@ done
unix2dos README
chmod 755 $1
# Pack
-zip -9 -j ${dist}.zip $@ LICENSE README NOTICE ${copy}
-
-# Sign
archive=${dist}.zip
-. ${tools}/signfile.sh ${sign} $archive
+zip -9 -j ${archive} $@ README ${copy}
+# Sign
+. ${tools}/signfile.sh ${sign} ${archive}
# Cleanup
rm -f README ${copy} 2>/dev/null
Modified: tomcat/jk/trunk/tools/signfile.sh
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/signfile.sh?rev=1572128&r1=1572127&r2=1572128&view=diff
==============================================================================
--- tomcat/jk/trunk/tools/signfile.sh (original)
+++ tomcat/jk/trunk/tools/signfile.sh Wed Feb 26 16:11:53 2014
@@ -1,5 +1,4 @@
-#!/bin/sh
-
+#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]