diff options
| -rwxr-xr-x | mutator.sh | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -212,9 +212,10 @@ elif [[ "$COMMAND" == "auto-refac" ]]; then  	RUN_INPUT_ARR=$(ls ./temp | gawk 'BEGIN{RS="\n"}{print $1}')  	for loopinput in ${RUN_INPUT_ARR[@]}; do  		echo mut1-$loopinput -		"./mutator-lvl1" ./temp/$loopinput -- > ./temp/mut1-$loopinput  		echo "Running automatic-refactoring on copies of input(s)..." +		"./mutator-lvl1" ./temp/$loopinput -- > ./temp/mut1-$loopinput  		"clang-format" -i $loopinput +		"./mutator-lvl2" ./temp/mut1-$loopinput -- > ./temp/mut2-$loopinput  	done  elif [[ "$COMMAND" == "jack" ]]; then  	echo | 
