diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-29 08:10:44 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-29 08:10:44 +0530 |
commit | 56fd18b17df26ea28f28b9546bdf661ae10f8512 (patch) | |
tree | eff574b11051b0a84b0e7544cb9fa80a5ce25a1c /scripts | |
parent | fd20480f554060805acba3124cb251be7824c4d2 (diff) |
feat: rip out Spotless
Spotless' configuration cache support is irritating since it requires you to wipe config cache
every time you initialise a Gradle daemon.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/pre-push-hook.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pre-push-hook.sh b/scripts/pre-push-hook.sh index 6580b9c7..8917df92 100644 --- a/scripts/pre-push-hook.sh +++ b/scripts/pre-push-hook.sh @@ -13,6 +13,6 @@ while read -r local_ref local_oid remote_ref remote_oid; do _=$remote_ref _=$remote_oid if [ "${local_oid}" != "${ZERO}" ]; then - "${GRADLE_EXEC}" metalavaCheckCompatibilityRelease detekt spotlessCheck test -PslimTests + "${GRADLE_EXEC}" metalavaCheckCompatibilityRelease detekt ktfmtCheck test -PslimTests fi done |