Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Britton committed Apr 18, 2017
1 parent 3ed5325 commit fad0bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MCwrapper/MakeMC.csh
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ if ( "$gen_pre" != "file" ) then
mv $PWD/*.conf $OUTDIR/configurations/
endif

set hddmfiles=`ls *.hddm`
set hddmfiles=`ls | grep .hddm`
if ( $hddmfiles != "" ) then
mv $PWD/*.hddm $OUTDIR/hddm/
endif
Expand Down
2 changes: 1 addition & 1 deletion MCwrapper/MakeMC.sh
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ fi
if [[ "$gen_pre" != "file" ]]; then
mv $PWD/*.conf $OUTDIR/configurations/
fi
hddmfiles=`ls *.hddm`
hddmfiles=$(ls | grep .hddm)
if [[ $hddmfiles != "" ]]; then
mv $PWD/*.hddm $OUTDIR/hddm/
fi
Expand Down

0 comments on commit fad0bac

Please sign in to comment.