Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2014-08-21 03:37:34 +0400
committerisaacs <i@izs.me>2014-08-21 03:37:34 +0400
commitaf2e895ca7b849dc482ea78e19568218149178b6 (patch)
tree0d1811151a3f06bd3fbd90f2f139c572a5a9564d
parent74ca07f8d62b543db57139b31bb628b8c6d3ba77 (diff)
test: startstop commands with windows-compatible quotes
-rw-r--r--test/tap/startstop/package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tap/startstop/package.json b/test/tap/startstop/package.json
index 3be0cf375..08a6547eb 100644
--- a/test/tap/startstop/package.json
+++ b/test/tap/startstop/package.json
@@ -1,7 +1,7 @@
{"name":"startstop"
,"version":"1.2.3"
,"scripts":{
- "start":"node -e 'console.log(\"start\")'",
- "stop":"node -e 'console.log(\"stop\")'"
+ "start":"node -e \"console.log('start')\"",
+ "stop":"node -e \"console.log('stop')\""
}
}