From 7ac1b03b5a8f240a10578cbb9df06d87d460bb41 Mon Sep 17 00:00:00 2001 From: Kevin Schaul Date: Mon, 12 Feb 2024 11:06:45 -0600 Subject: [PATCH] Move into /desktop dir For eventual merge into maplibre/maputnik repo --- .github/workflows/ci.yml | 3 +++ .gitignore => desktop/.gitignore | 0 LICENSE => desktop/LICENSE | 0 Makefile => desktop/Makefile | 0 README.md => desktop/README.md | 0 api.go => desktop/api.go | 0 {filewatch => desktop/filewatch}/filewatch.go | 0 go.mod => desktop/go.mod | 0 go.sum => desktop/go.sum | 0 maputnik.go => desktop/maputnik.go | 0 10 files changed, 3 insertions(+) rename .gitignore => desktop/.gitignore (100%) rename LICENSE => desktop/LICENSE (100%) rename Makefile => desktop/Makefile (100%) rename README.md => desktop/README.md (100%) rename api.go => desktop/api.go (100%) rename {filewatch => desktop/filewatch}/filewatch.go (100%) rename go.mod => desktop/go.mod (100%) rename go.sum => desktop/go.sum (100%) rename maputnik.go => desktop/maputnik.go (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abb90994..29e4839e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,9 @@ jobs: build: runs-on: ubuntu-latest + defaults: + run: + working-directory: ./desktop steps: - uses: actions/checkout@v3 diff --git a/.gitignore b/desktop/.gitignore similarity index 100% rename from .gitignore rename to desktop/.gitignore diff --git a/LICENSE b/desktop/LICENSE similarity index 100% rename from LICENSE rename to desktop/LICENSE diff --git a/Makefile b/desktop/Makefile similarity index 100% rename from Makefile rename to desktop/Makefile diff --git a/README.md b/desktop/README.md similarity index 100% rename from README.md rename to desktop/README.md diff --git a/api.go b/desktop/api.go similarity index 100% rename from api.go rename to desktop/api.go diff --git a/filewatch/filewatch.go b/desktop/filewatch/filewatch.go similarity index 100% rename from filewatch/filewatch.go rename to desktop/filewatch/filewatch.go diff --git a/go.mod b/desktop/go.mod similarity index 100% rename from go.mod rename to desktop/go.mod diff --git a/go.sum b/desktop/go.sum similarity index 100% rename from go.sum rename to desktop/go.sum diff --git a/maputnik.go b/desktop/maputnik.go similarity index 100% rename from maputnik.go rename to desktop/maputnik.go