Parker Moore <parkrmoore@xxxxxxxxx> writes: > diff --git a/contrib/persistent-https/Makefile > b/contrib/persistent-https/Makefile > index 92baa3be..8248269 100644 > --- a/contrib/persistent-https/Makefile > +++ b/contrib/persistent-https/Makefile > @@ -12,7 +12,7 @@ > # See the License for the specific language governing permissions and > # limitations under the License. > > -BUILD_LABEL=$(shell date +"%s") > +BUILD_LABEL=$(shell cat ../../GIT-VERSION-FILE | cut -d" " -f3) We tend to avoid catting a single file only to pipe the result into a different command, so I'd rewrite this like so: BUILD_LABEL=$(shell cut -d" " -f3 ../../GIT-VERSION-FILE) while queuing. Thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html