From 6ba0f97163be3bd08178ddae2f49b096566e6712 Mon Sep 17 00:00:00 2001 From: Erick Amorim <73451993+ericklima-ca@users.noreply.github.com> Date: Sat, 1 Apr 2023 01:18:52 -0400 Subject: [PATCH] Add support for the Android platform (#105) --- src/commands/githook.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/githook.ts b/src/commands/githook.ts index 152d6c6..604255a 100755 --- a/src/commands/githook.ts +++ b/src/commands/githook.ts @@ -19,7 +19,8 @@ switch (platform) { case 'darwin': separator = ''; break; - // Linux + // Linux and Android + case 'android': case 'linux': separator = ''; break;