From 5685619c3a394eb7c739f93a59bd883fee8788f1 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 1 Dec 2017 02:40:08 -0800 Subject: [PATCH] Switch to using the latest Rojo release to sync itself --- plugin/rbxfs.json | 4 ---- plugin/src/Main.server.lua | 2 +- rojo.json | 6 +++--- 3 files changed, 4 insertions(+), 8 deletions(-) delete mode 100644 plugin/rbxfs.json diff --git a/plugin/rbxfs.json b/plugin/rbxfs.json deleted file mode 100644 index 1a6752aa..00000000 --- a/plugin/rbxfs.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "rootDirectory": "src", - "rootObject": "ReplicatedStorage.Rojo" -} \ No newline at end of file diff --git a/plugin/src/Main.server.lua b/plugin/src/Main.server.lua index cc50d23a..98f23e90 100644 --- a/plugin/src/Main.server.lua +++ b/plugin/src/Main.server.lua @@ -7,7 +7,7 @@ local Plugin = require(script.Parent.Plugin) local function main() local pluginInstance = Plugin.new() - local toolbar = plugin:CreateToolbar("Rojo Plugin 0.2.0") + local toolbar = plugin:CreateToolbar("Rojo Plugin vDEV") toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "") .Click:Connect(function() diff --git a/rojo.json b/rojo.json index 497d8db3..94f475b8 100644 --- a/rojo.json +++ b/rojo.json @@ -2,9 +2,9 @@ "name": "rojo", "servePort": 8081, "partitions": { - "test-folder": { - "path": "test-folder", - "target": "ReplicatedStorage.test" + "Rojo": { + "path": "plugin/src", + "target": "ReplicatedStorage.Rojo" } } } \ No newline at end of file