Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Sep 23, 2018
1 parent 5b76333 commit 17d2f4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
[![CircleCI](https://flat.badgen.net/circleci/github/idleberg/node-exec-appx)](https://circleci.com/gh/idleberg/node-exec-appx)
[![David](https://flat.badgen.net/david/dev/idleberg/node-exec-appx)](https://david-dm.org/idleberg/node-exec-appx?type=dev)

Executes a Windows Store app (Appx)
Executes a Windows Store application (Appx)

## Prerequisites

This library requires PowerShell 5.0 (or higher) and a Windows version with support for Windows Store apps
This library requires PowerShell 5.0 (or higher) and for the Windows Store

## Installation

Expand Down Expand Up @@ -43,7 +43,8 @@ See [`child_process.spawn`](https://nodejs.org/api/child_process.html#child_proc

## Related

- [get-appx-path](https://github.com/idleberg/node-get-appx-path)
- [get-appx-manifest](https://www.npmjs.com/package/get-appx-manifest)
- [get-appx-path](https://www.npmjs.com/package/get-appx-path)

## License

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const spawnAsync = promisify(spawn);

module.exports = (appID, args = [], options = {}) => {
if (platform() !== 'win32') {
throw 'Error: Not a Windows operating system';
throw 'Error: This library requires PowerShell 5.0 (or higher) and for the Windows Store';
}

options = Object.assign({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "exec-appx",
"version": "0.1.0",
"description": "Executes a Windows Store app (Appx)",
"description": "Executes a Windows Store application (Appx)",
"license": "MIT",
"scripts": {
"test": "eslint index.js"
Expand Down

0 comments on commit 17d2f4c

Please sign in to comment.