From: Lawrence S. <ljs...@us...> - 2018-09-13 12:36:04
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via b03dd965b2dec35de2cd04b96c133e81c95ac789 (commit) from 123a7c30f75419b4710ad5ed976547f7db32b739 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b03dd965b2dec35de2cd04b96c133e81c95ac789 Author: Lawrence Sebald <ljs...@us...> Date: Thu Sep 13 08:35:33 2018 -0400 Fix the banner generation script. ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/kernel/make_banner.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/arch/dreamcast/kernel/make_banner.sh b/kernel/arch/dreamcast/kernel/make_banner.sh index c79ad9e..1b26d9a 100755 --- a/kernel/arch/dreamcast/kernel/make_banner.sh +++ b/kernel/arch/dreamcast/kernel/make_banner.sh @@ -12,10 +12,10 @@ if [ -d "$KOS_BASE/.git" ]; then printf 'Git revision ' >> banner.h gitrev=`git describe --dirty` printf "$gitrev" >> banner.h - printf ':\\n\"\n' >> banner.h + printf ':\\n"\n' >> banner.h else printf "$relver" >> banner.h - printf ':\\n\"\n' >> banner.h + printf ':\\n"\n' >> banner.h fi printf '" ' >> banner.h @@ -44,7 +44,7 @@ printf ';\n' >> banner.h printf 'static const char kern_version[] = \n"' >> banner.h -if [ "$gitrev" == "" ]; then +if [ -n "$gitrev" ]; then printf "$relver" >> banner.h else printf "${gitrev#?}" >> banner.h hooks/post-receive -- A pseudo Operating System for the Dreamcast. |