fix missing asset images

jsbundle derivation needs to have images available because it stat's
them to verify they exist. They are actually included by Gradle.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
2020-04-07 09:24:45 +02:00
parent 9df455088e
commit 5ddd605328
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -30,11 +30,11 @@ in stdenv.mkDerivation {
"status-modules/resources/.*"
"build.clj" "externs.js"
"project.clj" "prepare-modules.js"
"resources/js/.*"
"resources/config/.*"
# lein jsbundle stat's images to check if they exist
"resources/.*"
];
exclude = [
"resources/images/.*"
"resources/fonts/.*"
];
root = path;
};
@@ -46,7 +46,7 @@ in stdenv.mkDerivation {
mkFilter {
root = path;
include = [
"mobile/js_files.*" "resources.*"
"mobile/js_files.*" "resources/.*"
"modules/react-native-status/android.*"
envFileName "VERSION" ".watchmanconfig"
"status-go-version.json" "react-native.config.js"