Skip to content

Commit

Permalink
' -> " (#654)
Browse files Browse the repository at this point in the history
If there is a variable in the string, single quotes will ignored it, while double quotes will bring the variable into the string after parsing
  • Loading branch information
DrRyanHuang authored Jun 27, 2022
1 parent fa034e0 commit 49608b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/01-how-to-build/linux-x86_64.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ If you want to make the above environment variables permanent, you could add the
```bash
echo '# set env for onnxruntime' >> ~/.bashrc
echo "export ONNXRUNTIME_DIR=${ONNXRUNTIME_DIR}" >> ~/.bashrc
echo 'export LD_LIBRARY_PATH=$ONNXRUNTIME_DIR/lib:$LD_LIBRARY_PATH' >> ~/.bashrc
echo "export LD_LIBRARY_PATH=$ONNXRUNTIME_DIR/lib:$LD_LIBRARY_PATH" >> ~/.bashrc
source ~/.bashrc
```

Expand Down

0 comments on commit 49608b4

Please sign in to comment.