Skip to content

Commit

Permalink
fix - Fixed pack.sh
Browse files Browse the repository at this point in the history
---

We've fixed a bug in the pack.sh script that causes releaseconf not to be
populated.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 6, 2024
1 parent 809ac21 commit 6d7d472
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ checkerror() {
fi
}

# This script builds KS and packs the artifacts. Use when you have MSBuild installed.
# This script builds and packs the artifacts. Use when you have MSBuild installed.
releaseconf=$1
if [ -z $releaseconf ]; then
releaseconf=Release
fi
ksversion=$(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"

Expand Down

0 comments on commit 6d7d472

Please sign in to comment.