Skip to content

Commit 6aeb417

Browse files
committed
Fixed hard-coded path in format soar script
1 parent ea1eb2a commit 6aeb417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

format_soar.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if [ "$filename" == "" ]; then
5656
else
5757
# echo "Formatting file $file"
5858
#!/bin/bash
59-
astyle "$file" --options="/Users/mazzin/git/Soar/SoarSuite/format_soar.astylerc"
59+
astyle "$file" --options="format_soar.astylerc"
6060
fi
6161
done
6262
else
@@ -65,6 +65,6 @@ else
6565
else
6666
# echo "Formatting file $filename"
6767
#!/bin/bash
68-
astyle "$filename" --options="/Users/mazzin/git/Soar/SoarSuite/format_soar.astylerc"
68+
astyle "$filename" --options="format_soar.astylerc"
6969
fi
7070
fi

0 commit comments

Comments
 (0)