We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e847e32 commit e162b21Copy full SHA for e162b21
1 file changed
.github/scripts/bindist.sh
@@ -19,7 +19,7 @@ case "${TARBALL_EXT}" in
19
tar.xz)
20
# we need to control the order, so the hls wrapper binary is installed
21
# from the oldest version in the list
22
- : "${GHCS:="$(cd "$CI_PROJECT_DIR/out/${ARTIFACT}" && rm -f ./*.json && for ghc in * ; do printf "%s\n" "$ghc" ; done | sort -r | tr '\n' ' ')"}"
+ : "${GHCS:="$(cd "$CI_PROJECT_DIR/out/${ARTIFACT}" && ls && rm -f ./*.json && for ghc in ./* ; do printf "%s\n" "$ghc" ; done | sort -r | tr '\n' ' ')"}"
23
emake --version
24
emake GHCUP=ghcup ARTIFACT="${ARTIFACT}" GHCS="${GHCS}" bindist || fail_with_ghcup_logs "make bindist failed"
25
emake GHCUP=ghcup ARTIFACT="${ARTIFACT}" bindist-tar || fail_with_ghcup_logs "make bindist failed"
0 commit comments