Skip to content

Instantly share code, notes, and snippets.

@dpolivaev
Created September 16, 2018 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpolivaev/58db693d45cd77c494416ca2bed4a1a5 to your computer and use it in GitHub Desktop.
Save dpolivaev/58db693d45cd77c494416ca2bed4a1a5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -o errexit
solutionDir="$(exercism download --uuid $@)"
echo "$solutionDir"
cd "$solutionDir"
find src/test -type f -print -exec sed -i "s%@Ignore%// @Ignore%g" '{}' \;
gradle clean test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment