Updated Command main file to support the new packager
F16Gaming [10-14-12 - 14:03]
Updated Command main file to support the new packager
diff --git a/Command.lua b/Command.lua
index 679af36..f118be4 100644
--- a/Command.lua
+++ b/Command.lua
@@ -1,3 +1,4 @@
+--$GITINFO_PREFIX$C.GitInfo
--[[
* Copyright (c) 2011-2012 by Adam Hellberg.
*
@@ -44,7 +45,8 @@ Command = {
Global = {},
Settings = {},
Events = {},
- Data = {}
+ Data = {},
+ GitInfo = {}
}
local C = Command
@@ -62,6 +64,10 @@ local CRM
local RCM
local log
+-- :BEGIN: Automatic insertion of git information
+--$WRITE_GITINFO$
+-- :END: Automatic insertion of git information
+
--- Initialize Command.
--
function C:Init()