We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b9a48 commit 6d2d239Copy full SHA for 6d2d239
GRID/utils/extractErroredLogFiles.sh
@@ -4,13 +4,13 @@
4
# Beware that errors might occur outside of O2DPG tasks such as in preprocessing etc or not visible in logs
5
6
mytar () {
7
- tar $@
+ tar "$@"
8
}
9
if [[ $(uname) == "Darwin" ]]; then
10
echo "Running on macOS. This needs gnu-tar"
11
$(which gtar)
12
13
- gtar $@
+ gtar "$@"
14
15
fi
16
GRID/utils/grid_submit.sh
@@ -401,7 +401,7 @@ EOF
401
spin[1]="|"
402
spin[0]="\\"
403
JOBSTATUS="I"
404
- if [ "{WAITFORALIEN}" ]; then
+ if [ "${WAITFORALIEN}" ]; then
405
echo -n "Waiting for jobs to return ... Last status : ${spin[0]} ${JOBSTATUS}"
406
407
counter=0
0 commit comments