Skip to content
Snippets Groups Projects
Commit ea391ce2 authored by Jeremy Mathews's avatar Jeremy Mathews
Browse files

Collapse Folder and File Names

parent 7aa16d3d
Branches
Tags
3 merge requests!41Develop,!32Resolve "Add error checking for filename/folder names",!31Resolve "Add error checking for filename/folder names"
Pipeline #3905 passed with stages
in 1 minute and 52 seconds
......@@ -37,7 +37,11 @@ process checkDesignFile {
"""
hostname
ulimit -a
python3 "$baseDir/scripts/check_design.py" -d "$designLocation"
dL=`echo "$designLocation" | tr -d ' '`
if [ "$designLocation" != "\$dL" ]
then mv "$designLocation" "\$dL"
fi
python3 "$baseDir/scripts/check_design.py" -d "\$dL"
"""
}
......@@ -60,10 +64,16 @@ process untarBCL {
"""
hostname
ulimit -a
tar_no=`echo "${tar}" | tr -d ' '`
if [ "${tar}" != "\${tar_no}" ]
then mv "${tar}" "\${tar_no}"
fi
name=`echo ${tar} | rev | cut -f1 -d '.' | rev`;
if [ "\${name}" == "gz" ];
then tar -xvf "$tar" -I pigz;
else tar -xvf "$tar";
then tar -xvf "\$tar_no" -I pigz;
else tar -xvf "\$tar_no";
fi;
"""
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment