From bc803b70d883e0b6236f0b144d0cd30b8bf464e2 Mon Sep 17 00:00:00 2001 From: Egbert Teeselink Date: Tue, 22 Aug 2017 23:00:56 +0200 Subject: [PATCH] Add workaround for pushd and popd to README (#122) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8253fb1..3ef0d9c 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ Due to the differences in execution environments between ShellJS and `shx` (JS v | Unsupported command | Recommend workaround | | ------------------- | -------------------- | | `shx cd` | Just use plain old `cd` (it's the same on windows too) | -| `shx pushd` | No workaround | -| `shx popd` | No workaround | +| `shx pushd` | Just use plain old `pushd`. Use forward slashes and double-quote the path. (e.g. `pushd "../docs"`. This would fail on Windows without the quotes) | +| `shx popd` | Just use plain old `popd` | | `shx dirs` | No workaround | | `shx set` | See below | | `shx exit` | Just use plain old `exit` |