Skip to content

Commit

Permalink
wmakePrintBuild::getOldValues: Removed quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Weller committed Dec 31, 2024
1 parent 16e5204 commit 78c0718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wmake/wmakePrintBuild
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | Website: https://openfoam.org
# \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
# \\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
Expand Down Expand Up @@ -119,7 +119,7 @@ build="$WM_PROJECT_DIR/.build"
unset oldPackage oldVersion
getOldValues()
{
set -- "$(tail -1 "$build" 2>/dev/null)"
set -- $(tail -1 "$build" 2>/dev/null)
oldVersion="$1"
[ "$#" -gt 0 ] && shift
oldPackage="$*"
Expand Down

0 comments on commit 78c0718

Please sign in to comment.