From 462e223c3dc597cb102225932b2b195975a382e9 Mon Sep 17 00:00:00 2001 From: Emanuel Sprung Date: Fri, 24 Jan 2020 20:01:47 +0100 Subject: [PATCH] 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. --- Meta/refresh-serenity-qtcreator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/refresh-serenity-qtcreator.sh b/Meta/refresh-serenity-qtcreator.sh index 00ad76b3e8..0ddc7a1636 100755 --- a/Meta/refresh-serenity-qtcreator.sh +++ b/Meta/refresh-serenity-qtcreator.sh @@ -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