Skip to content

Commit

Permalink
fix - Fixed version variable
Browse files Browse the repository at this point in the history
---

We've fixed a pack.sh script bug where the version isn't specified.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 6, 2024
1 parent 64efce7 commit 6a133d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ releaseconf=$1
if [ -z $releaseconf ]; then
releaseconf=Release
fi
ksversion=$(grep "<Version>" ../Directory.Build.props | cut -d "<" -f 2 | cut -d ">" -f 2)
version=$(grep "<Version>" ../Directory.Build.props | cut -d "<" -f 2 | cut -d ">" -f 2)
checkerror $? "Failed to get version. Check to make sure that the version is specified correctly in D.B.props"

# Check for dependencies
Expand Down

0 comments on commit 6a133d5

Please sign in to comment.