status-react/scripts/check-nix-shell.sh
Jakub Sokołowski 9d6ed9305b
fix shebang for NixOS usage in scheck-nix-shell.sh
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2023-10-18 22:17:25 +02:00

8 lines
217 B
Bash
Executable File

#!/usr/bin/env 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