Skip to content

Commit

Permalink
use only hyphens in package names
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Oct 28, 2022
1 parent 89c65ae commit 734c05c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/package-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ version="$(ls ${jar_path} | xargs -n 1 basename | sed 's/^org.lflang-\(.*\).jar$
# use a different naming convention for nightly build artifacts
if [[ "$#" > 0 && "$1" = "nightly" ]]; then
echo "Packaging Lingua Franca Nightly Build"
outname="lf-cli_nightly_$(date '+%Y%m%d-%H%M%S')"
outname="lf-cli-nightly-$(date '+%Y%m%d-%H%M%S')"
else
echo "Packaging Lingua Franca v${version}"
outname="lf-cli_${version}"
outname="lf-cli-${version}"
fi

# assemble the files in a separate directory
Expand Down

0 comments on commit 734c05c

Please sign in to comment.