From 1a0473050cb17e7740651b2a2365945bbf768a0b Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 22 Oct 2018 10:41:46 +0300 Subject: [PATCH] quote variables. See https://shlomif-tech.livejournal.com/14671.html . --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2ffe4ad0..d39dacb8 100644 --- a/README.md +++ b/README.md @@ -122,8 +122,8 @@ cd PySolFC ``` PKGDIR=/usr/local/packages/PySolFC # or whatever export PKGDIR -mkdir -p $PKGDIR -( cd $PKGDIR && python -m venv ./env ) +mkdir -p "$PKGDIR" +( cd "$PKGDIR" && python -m venv ./env ) ``` #### 4 - Run the install script @@ -136,8 +136,9 @@ mkdir -p $PKGDIR #### 6 - Enjoy playing -$PKGDIR/env/bin/pysol.py - +``` +"$PKGDIR"/env/bin/pysol.py +``` ## Alternate toolkit.