You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2020/12/04 22:52:33 UTC

[airavata-django-portal] branch master updated: Quote $PWD in case it contains spaces

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/master by this push:
     new 3390405  Quote $PWD in case it contains spaces
3390405 is described below

commit 3390405a0b96a768a07570cc3ced08aab6ea5212
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Fri Dec 4 17:52:14 2020 -0500

    Quote $PWD in case it contains spaces
---
 docs/tutorial/gateways_tutorial.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/tutorial/gateways_tutorial.md b/docs/tutorial/gateways_tutorial.md
index 2cde8d1..fddeaf4 100644
--- a/docs/tutorial/gateways_tutorial.md
+++ b/docs/tutorial/gateways_tutorial.md
@@ -367,7 +367,7 @@ if you are interested).
 cd $HOME
 git clone https://github.com/machristie/gateways19-tutorial.git
 cd gateways19-tutorial
-docker run -d --name gateways19-tutorial -p 8000:8000 -v $PWD:/extensions -v $PWD/settings_local.py:/code/django_airavata/settings_local.py machristie/airavata-django-portal
+docker run -d --name gateways19-tutorial -p 8000:8000 -v "$PWD:/extensions" -v "$PWD/settings_local.py:/code/django_airavata/settings_local.py" machristie/airavata-django-portal
 ```
 
 !!! note "For remote Docker host users"