mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
build : fix line breaking error in build-info.sh (#2349)
* fix line breaking * build number line break removal
This commit is contained in:
parent
0c06204fb3
commit
82552b7f54
1 changed files with 3 additions and 2 deletions
|
@ -16,7 +16,8 @@ fi
|
||||||
echo "#ifndef BUILD_INFO_H"
|
echo "#ifndef BUILD_INFO_H"
|
||||||
echo "#define BUILD_INFO_H"
|
echo "#define BUILD_INFO_H"
|
||||||
echo ""
|
echo ""
|
||||||
echo "#define BUILD_NUMBER $BUILD_NUMBER"
|
echo "#define BUILD_NUMBER $BUILD_NUMBER" | tr -d '\n'
|
||||||
echo "#define BUILD_COMMIT \"$BUILD_COMMIT\""
|
echo ""
|
||||||
|
echo "#define BUILD_COMMIT \"$BUILD_COMMIT\"" | tr -d '\n'
|
||||||
echo ""
|
echo ""
|
||||||
echo "#endif // BUILD_INFO_H"
|
echo "#endif // BUILD_INFO_H"
|
||||||
|
|
Loading…
Reference in a new issue