Skip to content
Snippets Groups Projects
Unverified Commit dfa61431 authored by Dan Callahan's avatar Dan Callahan
Browse files

Fix Shellcheck SC2155: Declare + export separately

Declare and assign separately to avoid masking return values.

https://github.com/koalaman/shellcheck/wiki/SC2155



Signed-off-by: default avatarDan Callahan <danc@element.io>
parent 6a9d84a6
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,8 @@ cd "$DIR/.." || exit
mkdir -p demo/etc
export PYTHONPATH=$(readlink -f "$(pwd)")
PYTHONPATH=$(readlink -f "$(pwd)")
export PYTHONPATH
echo $PYTHONPATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment