mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 11:06:25 +00:00
90d517adf6
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
rm -rf .nix-gcroots
|
|
mkdir .nix-gcroots
|
|
|
|
drv=$(nix-instantiate shell.nix)
|
|
refs=$(nix-store --query --references $drv)
|
|
nix-store -r $refs --indirect --add-root $GIT_ROOT/.nix-gcroots/shell.dep
|