Skip to content

Commit

Permalink
Fixed hard-coded path in format soar script
Browse files Browse the repository at this point in the history
  • Loading branch information
mazina committed Sep 20, 2014
1 parent ea1eb2a commit 6aeb417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions format_soar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if [ "$filename" == "" ]; then
else
# echo "Formatting file $file"
#!/bin/bash
astyle "$file" --options="/Users/mazzin/git/Soar/SoarSuite/format_soar.astylerc"
astyle "$file" --options="format_soar.astylerc"
fi
done
else
Expand All @@ -65,6 +65,6 @@ else
else
# echo "Formatting file $filename"
#!/bin/bash
astyle "$filename" --options="/Users/mazzin/git/Soar/SoarSuite/format_soar.astylerc"
astyle "$filename" --options="format_soar.astylerc"
fi
fi

0 comments on commit 6aeb417

Please sign in to comment.