From 656a14c2a2e808330d60b00c75bbbb861bc52170 Mon Sep 17 00:00:00 2001 From: Dominic Zimmer Date: Sat, 4 Jul 2020 13:14:50 +0200 Subject: [PATCH] Add bootstrap.lua --- bootstrap.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 bootstrap.lua diff --git a/bootstrap.lua b/bootstrap.lua new file mode 100644 index 0000000..eb5f4c1 --- /dev/null +++ b/bootstrap.lua @@ -0,0 +1,8 @@ +-- This is a one line, clipboard friendly installer of gitea.lua +-- +-- To install the gitea script +-- * Copy the last line of this file +-- * Open your lua interpreter in the turtle +-- * Paste the line using +-- * Hit enter +h=io.open("gitea","w");print("You may run gitea now.");r=http.get("https://gitea.leafbla.de/dominic/turtles/raw/branch/master/gitea.lua");h:write(r.readAll());exit()