summaryrefslogtreecommitdiff
path: root/nix/android-shell-shellHook.py
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-06-06 21:05:32 +0200
committerDaniel Weipert <code@drogueronin.de>2023-06-06 21:05:32 +0200
commit152ec3e0a33816a433867a0c0ba8c6c9fc20f5a8 (patch)
tree3bbdbf415ba09bc8d92e2e8affb693d7872e7ed2 /nix/android-shell-shellHook.py
parent93edf37a5b82c0dc52846c28b9e804f6e4352235 (diff)
fix nix androidsdk fixup for consistency between gitlab-ci and localHEADmain
Diffstat (limited to 'nix/android-shell-shellHook.py')
-rwxr-xr-xnix/android-shell-shellHook.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/nix/android-shell-shellHook.py b/nix/android-shell-shellHook.py
deleted file mode 100755
index 53a542b..0000000
--- a/nix/android-shell-shellHook.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-
-import sys, os, shutil
-
-BUILD_TOOLS_PATH = sys.argv[1]
-PLATFORMS_PATH = sys.argv[2]
-BUILD_TOOLS = [os.path.join(BUILD_TOOLS_PATH, filename) for filename in os.listdir(BUILD_TOOLS_PATH)]
-PLATFORMS = [os.path.join(PLATFORMS_PATH, filename) for filename in os.listdir(PLATFORMS_PATH)]
-
-for build_tool in BUILD_TOOLS:
- if os.path.islink(build_tool):
- print(f'build-tool "{os.path.basename(build_tool)}" is a symlink. Copying...')
- link_src = os.readlink(build_tool)
- os.unlink(build_tool)
- shutil.copytree(link_src, build_tool)
-
-for platform in PLATFORMS:
- if os.path.islink(platform):
- print(f'platform "{os.path.basename(platform)}" is a symlink. Copying...')
- link_src = os.readlink(platform)
- os.unlink(platform)
- shutil.copytree(link_src, platform)