mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-13 10:20:38 +01:00
12 lines
191 B
Bash
Executable File
12 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
build_dir=$1
|
|
dst_dir=$2
|
|
|
|
# shellcheck disable=SC2045
|
|
for image in $(ls -S ${build_dir}/images/*.tar); do
|
|
podman --root "${dst_dir}" load --input "${image}"
|
|
done
|
|
|