Removed unecessary semicolon.

This commit is contained in:
Harrison Deng 2022-01-20 12:23:30 -06:00
parent a42de5af9b
commit 4bac8a1a30

View File

@ -12,7 +12,7 @@ projname = pomroot.find("{" + gen.POM_NAMESPACE + "}" + "name").text
pluginver = pomroot.find("{" + gen.POM_NAMESPACE + "}" + "version").text
pluginfilename = projname + "-" + pluginver + ".jar"
plugindir = gen.DEV_SERVER_PATH + "plugins/";
plugindir = gen.DEV_SERVER_PATH + "plugins/"
if not os.path.exists(plugindir):
os.mkdir(plugindir)