From 61e3db58f7343094d9a40edf74d428ef9d77ae04 Mon Sep 17 00:00:00 2001 From: Jonathan Holmes Date: Wed, 17 May 2023 14:54:38 +1200 Subject: [PATCH 1/2] update readme --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index c0710f8..6e9f4ea 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,6 @@
-This is a more up-to-date fork of the [Tarmac repository](https://github.com/Roblox/Tarmac) by Roblox, since the original repository has effectively been *abandoned* (hasn't had updates since 2020). - -Tarmac is a resource compiler and asset manager for Roblox projects. It helps enable hermetic place builds when used with tools like [Rojo](https://github.com/rojo-rbx/rojo). - Tarmac is inspired by projects like [Webpack](https://webpack.js.org/) that make it easy to reference assets from code. ## Installation From 31c9f13fd3d1134cd6c189f6e88641b20f1dd777 Mon Sep 17 00:00:00 2001 From: Jonathan Holmes Date: Wed, 17 May 2023 15:05:42 +1200 Subject: [PATCH 2/2] Change to use rojo-rbx repo for installation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e9f4ea..9ca3a7b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The recommended way to install Tarmac is with [Aftman](https://github.com/LPGhat Add an entry to the `[tools]` section of your `aftman.toml` file: ```toml -tarmac = "vorlias/tarmac@0.7.3" +tarmac = "rojo-rbx/tarmac@0.7.3" ``` ### Installing with Foreman @@ -28,7 +28,7 @@ tarmac = "vorlias/tarmac@0.7.3" Add an entry to the `[tools]` section of your `foreman.toml` file: ```toml -tarmac = { source = "vorlias/tarmac", version = "0.7.3" } +tarmac = { source = "rojo-rbx/tarmac", version = "0.7.3" } ```