Added python project; fixed spelling of folder

This commit is contained in:
2023-09-30 16:09:14 -05:00
parent 1f23cb73d1
commit 6bf66c5916
1075 changed files with 2165 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
function main() {
jar cvfm UFM.jar manifest.txt com/itdominator/ufm/*.class \
com/itdominator/ufm/TabSystem \
com/itdominator/ufm/ThumbnailSystem \
com/itdominator/ufm/Utils \
com/itdominator/ufm/resources
chmod +x UFM.jar
}
main;