From 0fc956ebdb52910596fbee35400285f01e0d8125 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 30 May 2019 12:24:30 +0200 Subject: [PATCH] Rename install_ndk_libs -> download_ndk_libs It's more descriptive --- .circleci/config.yml | 2 +- scripts/{install_ndk_libs.sh => download_ndk_libs.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{install_ndk_libs.sh => download_ndk_libs.sh} (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index 57feac09..310c07ef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: - checkout - run: name: Get NDK Libraries - command: apt-get update && apt-get install -y jq && ./scripts/install_ndk_libs.sh + command: apt-get update && apt-get install -y jq && ./scripts/download_ndk_libs.sh - run: name: Test command: flutter test diff --git a/scripts/install_ndk_libs.sh b/scripts/download_ndk_libs.sh similarity index 100% rename from scripts/install_ndk_libs.sh rename to scripts/download_ndk_libs.sh