From a54a7d517ed3267c22de1edec4a861648af3e6ba Mon Sep 17 00:00:00 2001 From: proletarius101 <54175165+proletarius101@users.noreply.github.com> Date: Thu, 16 Feb 2023 05:39:21 +0000 Subject: [PATCH] fix: remove unused error-prone submodule setup According to https://git-scm.com/docs/gitsubmodules, there must be a working directory at path/to/bar/ if there's a submodule.foo.path = path/to/bar entry in .gitmodules. Failure to have this will result in errors in certain build environments (e.g. Flatpak: standardnotes/app#516) Same as in https://github.com/rust-windowing/glutin/pull/1575 --- .gitmodules | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .gitmodules diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 9656dc7882..0000000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "deps/apk-builder"] - path = deps/apk-builder - url = https://github.com/rust-windowing/android-rs-glue