From 74ba86af76d5d81ef6c6524ff7ec1825d4235273 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sun, 4 Mar 2018 00:08:13 -0500 Subject: [PATCH] escape quotes --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c5627b363f..a9c80825a8 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "sub:init": "git submodule update --init --recursive", "sub:update": "git submodule update --remote", "sub:pull": "git submodule foreach git pull origin master", - "sub:commit": "npm run sub:pull && git commit -am 'update submodule'", + "sub:commit": "npm run sub:pull && git commit -am \"update submodule\"", "postinstall": "./node_modules/.bin/electron-rebuild && npm run sub:init", "lint": "tslint src/**/*.ts || true", "lint:fix": "tslint src/**/*.ts --fix",