From 5c4218251f9c49c21d82d2e57275605762d66a35 Mon Sep 17 00:00:00 2001 From: dzbaker Date: Wed, 9 Aug 2023 09:34:20 -0400 Subject: [PATCH] Fix #399, Fixes errors in IC Bundle workflow file --- .github/workflows/icbundle.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/icbundle.yml b/.github/workflows/icbundle.yml index 8442178a..54f26ba4 100644 --- a/.github/workflows/icbundle.yml +++ b/.github/workflows/icbundle.yml @@ -59,13 +59,13 @@ jobs: sed -ir "s|# Changelog|$changelog_entry|" CHANGELOG.md buildnumber_entry=$'#define CFE_PSP_IMPL_BUILD_NUMBER '${rev_num} - sed -ir "s|define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/mcp750-vxworks/inc/psp_version.h + sed -ir "s|#define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/mcp750-vxworks/inc/psp_version.h buildnumber_entry=$'#define CFE_PSP_IMPL_BUILD_NUMBER '${rev_num} - sed -ir "s|define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/pc-linux/inc/psp_version.h + sed -ir "s|#define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/pc-linux/inc/psp_version.h buildnumber_entry=$'#define CFE_PSP_IMPL_BUILD_NUMBER '${rev_num} - sed -ir "s|define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/pc-rtems/inc/psp_version.h + sed -ir "s|#define CFE_PSP_IMPL_BUILD_NUMBER.*|$buildnumber_entry|" fsw/pc-rtems/inc/psp_version.h - name: Commit and Push Updates to IC Branch env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}