Skip to content
Snippets Groups Projects
Commit 84bdbcbb authored by Ulrich Schwickerath's avatar Ulrich Schwickerath
Browse files

Update README.md

parent 6ebf30ad
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@ eval $command
# compile
for ending in .f .F ; do
ls *$ending >/dev/null 2>&1
if [[ $? == 0 ]]; then
if [[ $? -eq 0 ]]; then
for file in *$ending ; do
$FCOMP $FFLAGS -c $file
done
......@@ -167,7 +167,7 @@ done
for ending in *.c *.C *.cc ; do
ls *$ending >/dev/null 2>&1
if [[ $? == 0 ]]; then
if [[ $? -eq 0 ]]; then
for file in *ending ; do
$CCOMP $CFLAGS -c $file
done
......@@ -196,3 +196,6 @@ It
## Running an analysis job on HTCondor
This works exactly as described above. Save the script above to some file, create a submit file and ensure that the exectuable
name matches what you need.
# Additional information
Please check https://gitlab.cern.ch/delphi/quickstart for additional and more accurate information.
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