Skip to content
Snippets Groups Projects
Commit 32d5aca1 authored by Administrator's avatar Administrator
Browse files

Print names of only directories in base_images

parent d3e7b553
No related branches found
No related tags found
No related merge requests found
Pipeline #11481 failed with stages
in 3 seconds
......@@ -5,7 +5,8 @@ echo "Running CI for ${TAG}"
if [[ ! -z "${TAG}" ]]; then
git clone --single-branch --branch ${TAG} https://github.com/MAAP-Project/maap-workspaces.git
pushd maap-workspaces
ls -d base_images/*/* > ${basedir}/images.txt
# Print names of directories in base_images
ls -l base_images/ | grep '^d' | awk '{print $NF}' > ${basedir}/images.txt
popd
cat ${basedir}/images.txt
template="${basedir}/deploy.yml.tmpl"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment