Meta: Fix typo + suggest value of export variable.

The variable is not set anymore by the UseIt.sh script, so if a user doesn't
have it set in the .bashrc or .zshrc file already, it's not working properly.
This commit is contained in:
Emanuel Sprung 2020-01-24 20:01:47 +01:00 committed by Andreas Kling
parent 9885ccb7a7
commit 462e223c3d

View file

@ -1,7 +1,7 @@
#!/bin/sh
if [ ! -n "$SERENITY_ROOT" ]
then echo "Serenety root not set."
then echo "Serenity root not set. Please set environment variable first. E.g. export SERENITY_ROOT=$(git rev-parse --show-toplevel)"
fi
cd "$SERENITY_ROOT" || exit 1