commit | 7991ed76c3c1b6ed447ee0f26c8fefe6ca9a3a13 | [log] [tgz] |
---|---|---|
author | Vivekanand Veeracholan <vveerach@google.com> | Wed Aug 18 18:25:44 2021 -0700 |
committer | Vivekanand Veeracholan <vveerach@google.com> | Wed Aug 18 18:25:44 2021 -0700 |
tree | c7a8c44320a064ce0846140e5f49d91bbbe70bae | |
parent | ef9ee098e865a9e8fd81bbc80efc02cc63b5d839 [diff] |
meta-google: Fix inplace-gbmc-version.sh The script has a "#!/bin/bash" at the end of its command causing failure. Signed-off-by: Vivekanand Veeracholan <vveerach@google.com> Change-Id: I9b9e8fe9ee8a4374637e8fa95c0fa17b44e7ebb9
diff --git a/meta-google/recipes-phosphor/flash/inplace-gbmc-update/inplace-gbmc-version.sh b/meta-google/recipes-phosphor/flash/inplace-gbmc-update/inplace-gbmc-version.sh index 0c5c4e7..0391018 100644 --- a/meta-google/recipes-phosphor/flash/inplace-gbmc-update/inplace-gbmc-version.sh +++ b/meta-google/recipes-phosphor/flash/inplace-gbmc-update/inplace-gbmc-version.sh
@@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -grep '^VERSION_ID=' /etc/os-release | sed 's,.*-\([^-]*\),\1,g' | tr -d '\n'#!/bin/bash +grep '^VERSION_ID=' /etc/os-release | sed 's,.*-\([^-]*\),\1,g' | tr -d '\n'