1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Added basic VDF file for easier installation (bug 5681, r=dvander).

This commit is contained in:
Asher Baker 2013-04-01 03:03:31 +01:00
parent e5e25d6f0b
commit fe781a301d
2 changed files with 8 additions and 1 deletions

View File

@ -73,7 +73,9 @@ folders = [['addons', 'metamod', 'bin']]
job.AddCommand(DestroyPath(os.path.join(AMBuild.outputFolder, 'package')))
job.AddCommand(CreateFolders(folders))
#Copiy Files
#Copy Files
job.AddCommand(CopyFile(os.path.join(AMBuild.sourceFolder, 'support', 'metamod.vdf'),
os.path.join('addons')))
job.AddCommand(CopyFile(os.path.join(AMBuild.sourceFolder, 'support', 'metaplugins.ini'),
os.path.join('addons', 'metamod')))
job.AddCommand(CopyFile(os.path.join(AMBuild.sourceFolder, 'support', 'README.txt'),

5
support/metamod.vdf Normal file
View File

@ -0,0 +1,5 @@
"Plugin"
{
"file" "addons/metamod/bin/server"
}