Compare commits

..

No commits in common. "75b49147df41dea75f99fb43c2b39b17daca75d8" and "4271b28acd6a63521af05db5fbc88807f9a8cbf5" have entirely different histories.

2 changed files with 1 additions and 15 deletions

View File

@ -10,7 +10,7 @@ application {
}
group = "xyz.maxwellj.mapm"
version = "0.0.2"
version = "0.0.1"
repositories {
mavenCentral()

View File

@ -97,19 +97,5 @@ suspend fun main(args: Array<String>) {
val userInput = args[1]
val file = File(userInput)
println("Checksum of that file is ${md5(file.readText())}")
} else {
println("mapm - Max's Package Manager")
println("Version 0.0.2")
println("(C) Maxwell Jeffress 2024, licensed under the GNU GPL V3")
println("")
println("---Help---")
println("Arguments that can be run")
println("g Grab a package from the internet")
println("r Remove a package")
println("c Generate a checksum for a package")
println("")
println("More info at the following links:")
println("https://maxwellj.xyz/mapm")
println("https://git.maxwellj.xyz/max/mapm")
}
}