Skip to content

Commit

Permalink
Fix glob expansion in nightly install script
Browse files Browse the repository at this point in the history
  • Loading branch information
sfionov committed Sep 4, 2024
1 parent 3632a33 commit 631f850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/nightly/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ unpack() {
log "Package has been unpacked successfully"

dir_name=$(echo "${pkg_name}" | sed -E -e 's/(.*)(\.tar\.gz|\.zip)/\1/')
mv -f "${output_dir}/${dir_name}/*" "${output_dir}"
mv -f "${output_dir}/${dir_name}/"* "${output_dir}"
rmdir "${output_dir}/${dir_name}"

# Check for existing symlink or .nosymlink file
Expand Down

0 comments on commit 631f850

Please sign in to comment.