Skip to content

Commit

Permalink
#1028, #1096 | Fix flavor_folder_uppercase_path
Browse files Browse the repository at this point in the history
  • Loading branch information
1t5j0y committed Sep 18, 2023
1 parent e0acbe6 commit c336535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parameters:
type: enum
default: "generic"
enum: ["generic", "lfe", "sakhi", "lfeTeachNagaland"]
description: Flavor of the binary to generate. Must be one of "generic", "lfe" or "sakhi"
description: Flavor of the binary to generate. Must be one of "generic", "lfe", "lfeTeachNagaland" or "sakhi"
versionCode:
type: string
default: "1"
Expand Down Expand Up @@ -187,7 +187,6 @@ jobs:
versionName: << pipeline.parameters.versionName >>
steps:
- checkout
- run: echo "Job params << parameters.keystore_password >> << parameters.key_password >> << parameters.key_alias >>"
- run: echo "Building flavor << pipeline.parameters.flavor >>"
- run: echo "Building versionCode << pipeline.parameters.versionCode >>; versionName << pipeline.parameters.versionName >>"
- restore_cache:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ifndef flavor
endif
flavor_folder_uppercase_path:=$(shell echo "$(flavor)" | awk '{print toupper(substr($$0,1,1)) (substr($$0,2))}')

flavor_folder_uppercase_path:=$(shell echo "$(flavor)" | awk '{print toupper(substr($$0,1,1)) tolower(substr($$0,2))}')
#flavor_folder_uppercase_path:=$(shell echo "$(flavor)" | awk '{print toupper(substr($$0,1,1)) tolower(substr($$0,2))}')
ifeq ($(flavor), lfe)
sourcemap_file_path:=../../../../index.android.bundle.map
else
Expand Down

0 comments on commit c336535

Please sign in to comment.