mirror of
https://github.com/status-im/status-react.git
synced 2025-01-11 11:34:45 +00:00
8 lines
209 B
Bash
8 lines
209 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Check if inside Nix shell
|
||
|
if [[ -z "${IN_NIX_SHELL}" ]]; then
|
||
|
echo "ERROR: This command must be run inside a Nix shell. Please ensure you're inside a nix shell and try again."
|
||
|
exit 1
|
||
|
fi
|