mirror of
https://github.com/matrix-org/synapse.git
synced 2025-01-13 19:57:12 +00:00
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: Dan Callahan <danc@element.io>
This commit is contained in:
parent
6a9d84a676
commit
dfa6143133
@ -8,7 +8,8 @@ cd "$DIR/.." || exit
|
|||||||
|
|
||||||
mkdir -p demo/etc
|
mkdir -p demo/etc
|
||||||
|
|
||||||
export PYTHONPATH=$(readlink -f "$(pwd)")
|
PYTHONPATH=$(readlink -f "$(pwd)")
|
||||||
|
export PYTHONPATH
|
||||||
|
|
||||||
|
|
||||||
echo $PYTHONPATH
|
echo $PYTHONPATH
|
||||||
|
Loading…
Reference in New Issue
Block a user