nix: fix order of starting iOS shell hooks
Fixes the `'Statusgo.h' file not found` error. Resolves: https://github.com/status-im/status-react/issues/11951 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
2116847fc6
commit
b27a53bdee
|
@ -16,10 +16,11 @@ in {
|
|||
flock # used in nix/scripts/node_modules.sh
|
||||
];
|
||||
|
||||
# WARNING: Executes shellHook in reverse order.
|
||||
inputsFrom = [
|
||||
fastlane.shell
|
||||
status-go-shell
|
||||
pod-shell
|
||||
status-go-shell # Needs to run before pod-install
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
|
|
Loading…
Reference in New Issue