Skip to content
Snippets Groups Projects
Commit 914089f9 authored by Karl Wette's avatar Karl Wette
Browse files

Merge branch 'fix-computePSD-test' into 'master'

Fix lalappsComputePSD test

Closes #297

See merge request lscsoft/lalsuite!1313
parents 85616884 83fe2df1
No related branches found
Tags PRE-E7-011222
No related merge requests found
Pipeline #123562 passed
......@@ -142,7 +142,7 @@ get_psd () { # expected argument order: mthop IFO startTime endTime extrArgs
echo "Error.. something failed when running '$psd_code' ..."
exit 1
fi
firstline_psd=$(grep -o '^[^%]*' $psdfile | head -1)
firstline_psd=$(grep -v '^%' $psdfile | head -1)
freq=$(echo $firstline_psd | awk '{print $1}')
psd=$(echo $firstline_psd | awk '{print $2}')
power=$(echo $firstline_psd | awk '{print $3}')
......
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