From 152ec3e0a33816a433867a0c0ba8c6c9fc20f5a8 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Tue, 6 Jun 2023 21:05:32 +0200 Subject: fix nix androidsdk fixup for consistency between gitlab-ci and local --- nix/android-shell-shellHook.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 nix/android-shell-shellHook.py (limited to 'nix/android-shell-shellHook.py') 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) -- cgit v1.2.3