mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
ac77d9d3a6
- Made TechBot more configurable through .config files - Code refactoring - Removed automatic parameter parsing support to make everyone happy svn path=/trunk/; revision=33586
22 lines
409 B
C#
22 lines
409 B
C#
using System;
|
|
|
|
using TechBot.Library;
|
|
|
|
namespace TechBot.Commands.Common
|
|
{
|
|
[Command("svn", Help = "!svn" , Description="Where the ROS SVN repository is located")]
|
|
public class SvnCommand : Command
|
|
{
|
|
private string m_SvnRoot;
|
|
|
|
public SvnCommand()
|
|
{
|
|
m_SvnRoot = Settings.Default.SVNRoot;
|
|
}
|
|
|
|
public override void ExecuteCommand()
|
|
{
|
|
Say("svn co {0}", m_SvnRoot);
|
|
}
|
|
}
|
|
}
|