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:
parent
9df455088e
commit
5ddd605328
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue