Skip to content

Commit f107d8a

Browse files
committed
Merge branch 'fix/dev.eessi.io-prefix' of https://github.com/Neves-P/filesystem-layer into fix/dev.eessi.io-prefix
2 parents d75e9d9 + 85e520f commit f107d8a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/ingest-tarball.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,11 @@ tar_first_file=$(tar tf "${tar_file}" | head -n 1)
259259
tar_top_level_dir=$(echo "${tar_first_file}" | cut -d/ -f1)
260260
# Handle longer prefix with project name in dev.eessi.io
261261
if [ "${cvmfs_repo}" = "dev.eessi.io" ]; then
262-
tar_contents_type_dir=$(tar tf "${tar_file}" | head -n 2 | tail -n 1 | cut -d/ -f3)
262+
tar_contents_start_level=3
263263
else
264-
tar_contents_type_dir=$(tar tf "${tar_file}" | head -n 2 | tail -n 1 | cut -d/ -f2)
264+
tar_contents_start_level=2
265265
fi
266+
tar_contents_type_dir=$(tar tf "${tar_file}" | head -n 2 | tail -n 1 | cut -d/ -f${tar_contents_start_level})
266267

267268
# Check if we are running as the CVMFS repo owner, otherwise run cvmfs_server with sudo
268269
is_repo_owner || cvmfs_server="sudo cvmfs_server"

0 commit comments

Comments
 (0)