From commits-return-7839-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Sun Jul 28 00:47:22 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 519A618064E for ; Sun, 28 Jul 2019 02:47:22 +0200 (CEST) Received: (qmail 23264 invoked by uid 500); 28 Jul 2019 00:47:21 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 23250 invoked by uid 99); 28 Jul 2019 00:47:21 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 28 Jul 2019 00:47:21 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 2BB3485E93; Sun, 28 Jul 2019 00:47:18 +0000 (UTC) Date: Sun, 28 Jul 2019 00:47:18 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-composer] branch master updated: Use correct ASF header for tool scripts (#48) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156427483812.16445.8011302858703497433@gitbox.apache.org> From: rabbah@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-composer X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4b232898c7df913470aa10b9c2dd2b9e5bff6f58 X-Git-Newrev: 1f161c4d5951d29475a91b089bc14cbee4dbbcb3 X-Git-Rev: 1f161c4d5951d29475a91b089bc14cbee4dbbcb3 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-composer.git The following commit(s) were added to refs/heads/master by this push: new 1f161c4 Use correct ASF header for tool scripts (#48) 1f161c4 is described below commit 1f161c4d5951d29475a91b089bc14cbee4dbbcb3 Author: Matt Rutkowski AuthorDate: Sat Jul 27 19:47:13 2019 -0500 Use correct ASF header for tool scripts (#48) * full header for tool scripts * ignore apache license header in 'bin' dir. * ignore apache license header in 'bin' dir. --- bin/compose.js | 13 ++++++++----- bin/deploy.js | 13 ++++++++----- package.json | 7 ++++++- 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/bin/compose.js b/bin/compose.js index 64aba12..4b95b4b 100755 --- a/bin/compose.js +++ b/bin/compose.js @@ -1,11 +1,14 @@ #!/usr/bin/env node -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + /* + * 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. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/bin/deploy.js b/bin/deploy.js index 9374f99..046dace 100755 --- a/bin/deploy.js +++ b/bin/deploy.js @@ -1,11 +1,14 @@ #!/usr/bin/env node -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + /* + * 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. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/package.json b/package.json index 4afaaf9..1369d04 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "license": "Apache-2.0", "name": "openwhisk-composer", "version": "0.11.0", "description": "Composer is a new programming model for composing cloud functions built on Apache OpenWhisk.", @@ -58,5 +59,9 @@ "email": "nickm@us.ibm.com" } ], - "license": "Apache-2.0" + "standard": { + "ignore": [ + "/bin/" + ] + } }