From c81e7e3410ac4cdbed85b2aa81f661511e952123 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 7 Mar 2015 10:52:13 -0800 Subject: [PATCH] Move batchtool out of sourcepawn. --- {sourcepawn => tools}/batchtool/compile.cfg | 0 {sourcepawn => tools}/batchtool/compile.dpr | 0 {sourcepawn => tools}/batchtool/compile.exe | Bin {sourcepawn => tools}/batchtool/icon.rc | 0 {sourcepawn => tools}/batchtool/icon.res | Bin {sourcepawn => tools}/batchtool/pawn.ico | Bin {sourcepawn => tools}/batchtool/uFunc.pas | 0 {sourcepawn => tools}/batchtool/version.rc | 0 {sourcepawn => tools}/batchtool/version.res | Bin tools/buildbot/PackageScript | 2 +- 10 files changed, 1 insertion(+), 1 deletion(-) rename {sourcepawn => tools}/batchtool/compile.cfg (100%) rename {sourcepawn => tools}/batchtool/compile.dpr (100%) rename {sourcepawn => tools}/batchtool/compile.exe (100%) rename {sourcepawn => tools}/batchtool/icon.rc (100%) rename {sourcepawn => tools}/batchtool/icon.res (100%) rename {sourcepawn => tools}/batchtool/pawn.ico (100%) rename {sourcepawn => tools}/batchtool/uFunc.pas (100%) rename {sourcepawn => tools}/batchtool/version.rc (100%) rename {sourcepawn => tools}/batchtool/version.res (100%) diff --git a/sourcepawn/batchtool/compile.cfg b/tools/batchtool/compile.cfg similarity index 100% rename from sourcepawn/batchtool/compile.cfg rename to tools/batchtool/compile.cfg diff --git a/sourcepawn/batchtool/compile.dpr b/tools/batchtool/compile.dpr similarity index 100% rename from sourcepawn/batchtool/compile.dpr rename to tools/batchtool/compile.dpr diff --git a/sourcepawn/batchtool/compile.exe b/tools/batchtool/compile.exe similarity index 100% rename from sourcepawn/batchtool/compile.exe rename to tools/batchtool/compile.exe diff --git a/sourcepawn/batchtool/icon.rc b/tools/batchtool/icon.rc similarity index 100% rename from sourcepawn/batchtool/icon.rc rename to tools/batchtool/icon.rc diff --git a/sourcepawn/batchtool/icon.res b/tools/batchtool/icon.res similarity index 100% rename from sourcepawn/batchtool/icon.res rename to tools/batchtool/icon.res diff --git a/sourcepawn/batchtool/pawn.ico b/tools/batchtool/pawn.ico similarity index 100% rename from sourcepawn/batchtool/pawn.ico rename to tools/batchtool/pawn.ico diff --git a/sourcepawn/batchtool/uFunc.pas b/tools/batchtool/uFunc.pas similarity index 100% rename from sourcepawn/batchtool/uFunc.pas rename to tools/batchtool/uFunc.pas diff --git a/sourcepawn/batchtool/version.rc b/tools/batchtool/version.rc similarity index 100% rename from sourcepawn/batchtool/version.rc rename to tools/batchtool/version.rc diff --git a/sourcepawn/batchtool/version.res b/tools/batchtool/version.res similarity index 100% rename from sourcepawn/batchtool/version.res rename to tools/batchtool/version.res diff --git a/tools/buildbot/PackageScript b/tools/buildbot/PackageScript index 070bc903..94219560 100644 --- a/tools/buildbot/PackageScript +++ b/tools/buildbot/PackageScript @@ -465,6 +465,6 @@ CopyFiles('plugins/playercommands', 'addons/sourcemod/scripting/playercommands', ) if builder.target_platform == 'windows': - CopyFiles('sourcepawn/batchtool', 'addons/sourcemod/scripting', ['compile.exe']) + CopyFiles('tools/batchtool', 'addons/sourcemod/scripting', ['compile.exe']) else: CopyFiles('plugins', 'addons/sourcemod/scripting', ['compile.sh'])