Skip to content

Commit

Permalink
Quote environmental variables values
Browse files Browse the repository at this point in the history
Without quoting the paths, It can occur word splitting issue.
https://github.com/koalaman/shellcheck/wiki/SC2086
  • Loading branch information
Yuki Furuta authored and k-okada committed Feb 28, 2022
1 parent 5bc70d1 commit 16e747b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions env-hooks/99.euslisp.sh.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export ARCHDIR=@ARCHDIR@
export EUSDIR="@CMAKE_INSTALL_PREFIX@/share/euslisp/jskeus/eus/"
export LD_LIBRARY_PATH=$EUSDIR/$ARCHDIR/lib:$LD_LIBRARY_PATH
export PATH=$EUSDIR/$ARCHDIR/bin:$PATH

export LD_LIBRARY_PATH="$EUSDIR/$ARCHDIR/lib:$LD_LIBRARY_PATH"
export PATH="$EUSDIR/$ARCHDIR/bin:$PATH"

0 comments on commit 16e747b

Please sign in to comment.