Add skip_snapshot_checks flag for snapshot train debuggability
diff --git a/build.gradle b/build.gradle
index c05c07a..46e8fbc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -82,7 +82,8 @@
         ext.kotlin_version = rootProject.properties['kotlin_snapshot_version']
         println "Using Kotlin $kotlin_version for project $it"
 
-        if (version != atomicfu_version) {
+        def skipSnapshotChecks = rootProject.properties['skip_snapshot_checks'] != null
+        if (!skipSnapshotChecks && version != atomicfu_version) {
             throw new IllegalStateException("Current deploy version is $version, but atomicfu version is not overridden ($atomicfu_version) for $it")
         }