Skip to content

Commit

Permalink
Redo updates to script.
Browse files Browse the repository at this point in the history
I'm going to blame Git for this one, though it's probably user error
  • Loading branch information
coriolinus committed Nov 5, 2017
1 parent be9df7c commit cf66a28
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions _test/ensure-readmes-are-updated.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@ if [ ! -x bin/configlet ]; then
exit 1
fi

<<<<<<< HEAD
if [ ! -d "problem-specifications" ]; then
git clone [email protected]:exercism/problem-specifications.git problem-specifications
fi

=======
>>>>>>> 28d4a17e7c424b47d9c6649c05cdd127c1a2ef59
newline=$'\n '

missing_readmes=""
Expand All @@ -23,11 +20,7 @@ for exercise in $(git diff --name-only master..$(git rev-parse --abbrev-ref HEAD
else
existing_readme_checksum=$(md5sum $readme_path | cut -d' ' -f1)
# generate the new README
<<<<<<< HEAD
bin/configlet generate . --only "$exercise" --spec-path "problem-specifications"
=======
bin/configlet generate . --only "$exercise"
>>>>>>> 28d4a17e7c424b47d9c6649c05cdd127c1a2ef59
generated_readme_checksum=$(md5sum $readme_path | cut -d' ' -f1)

if [ $existing_readme_checksum != $generated_readme_checksum ]; then
Expand Down

0 comments on commit cf66a28

Please sign in to comment.