mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-21 10:51:05 +00:00
packaging: Fix typo to get the extra_tarballs path
It should've been "${m#*:}" instead of "${m#&:}". Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
parent
53e8461db2
commit
51b1df2333
@ -197,7 +197,7 @@ install_cached_tarball_component() {
|
|||||||
IFS=' ' read -a mapping <<< "${extra_tarballs}"
|
IFS=' ' read -a mapping <<< "${extra_tarballs}"
|
||||||
for m in ${mapping[@]}; do
|
for m in ${mapping[@]}; do
|
||||||
local extra_tarball_name=${m%:*}
|
local extra_tarball_name=${m%:*}
|
||||||
local extra_tarball_path=${m#&:}
|
local extra_tarball_path=${m#*:}
|
||||||
|
|
||||||
mv ${extra_tarball_name} ${extra_tarball_path}
|
mv ${extra_tarball_name} ${extra_tarball_path}
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user