Created
March 23, 2020 19:55
-
-
Save tylerforesthauser/1fb3d3f5212d02ce86e405621a7a1861 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env filebot -script | |
| println Settings.getApplicationIdentifier() | |
| println 'Groovy: ' + groovy.lang.GroovySystem.getVersion() | |
| println 'JRE: ' + Settings.getJavaRuntimeIdentifier() | |
| println 'DATA: ' + ApplicationFolder.AppData.get() | |
| try { | |
| print 'License: ' | |
| println Settings.LICENSE.check() | |
| } catch(Throwable error) { | |
| println error.message | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment