Skip to content

Commit

Permalink
actually lets symlink
Browse files Browse the repository at this point in the history
  • Loading branch information
bri committed Feb 14, 2024
1 parent e0cb679 commit e5fd2d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ BUILD_IMAGE(){
BASE_FILE="$(basename "${BUILD_FILE}")"
CUT_FILE="$(cut -d- -f2- <<<"${BASE_FILE}")"
HASH=$(cut -b5 <<<"${BASE_FILE}")
cp --sparse "${BUILD_FILE}" "build/$(_PREFIX)${HASH}${CUT_FILE}"
OUTNAME="build/$(_PREFIX)${HASH}${CUT_FILE}"
#cp --sparse "${BUILD_FILE}" "${OUTNAME}"
ln -s "${BUILD_FILE}" "${OUTNAME}"
}

LIST_RENAME_BUILD_ARTIFACTS(){
Expand Down

0 comments on commit e5fd2d4

Please sign in to comment.