File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -259,10 +259,11 @@ tar_first_file=$(tar tf "${tar_file}" | head -n 1)
259
259
tar_top_level_dir=$( echo " ${tar_first_file} " | cut -d/ -f1)
260
260
# Handle longer prefix with project name in dev.eessi.io
261
261
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
263
263
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
265
265
fi
266
+ tar_contents_type_dir=$( tar tf " ${tar_file} " | head -n 2 | tail -n 1 | cut -d/ -f${tar_contents_start_level} )
266
267
267
268
# Check if we are running as the CVMFS repo owner, otherwise run cvmfs_server with sudo
268
269
is_repo_owner || cvmfs_server=" sudo cvmfs_server"
You can’t perform that action at this time.
0 commit comments