mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-20 21:24:09 +01: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
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ cd "$DIR/.." || exit
|
|||
|
||||
mkdir -p demo/etc
|
||||
|
||||
export PYTHONPATH=$(readlink -f "$(pwd)")
|
||||
PYTHONPATH=$(readlink -f "$(pwd)")
|
||||
export PYTHONPATH
|
||||
|
||||
|
||||
echo $PYTHONPATH
|
||||
|
|
Loading…
Reference in a new issue