install.bat => install.ps1
authorAJ ONeal <coolaj86@gmail.com>
Tue, 30 Jun 2020 07:14:17 +0000 (03:14 -0400)
committerGitHub <noreply@github.com>
Tue, 30 Jun 2020 07:14:17 +0000 (03:14 -0400)
README.md

index 6d9a43b397d386c17c50667d1b9887bd20562253..0c50637021e801373ea3c4b907a20d2ef02bc0ff 100644 (file)
--- a/README.md
+++ b/README.md
@@ -66,8 +66,8 @@ An install consists of 5 parts in 4 files:
 my-new-package/
   - README.md (package info in frontmatter)
   - releases.js
-  - install.sh
-  - install.bat
+  - install.sh (bash)
+  - install.ps1 (PowerShell)
 ```
 
 1. Create Description
@@ -249,10 +249,13 @@ webi_post_install       # Runs `webi_add_path $pkg_dst_bin`
 # Roadmap
 
 - Wrap release APIs to unify and expose
+- [ ] Support more Windows packages
 - [ ] Support arbitrary git urls (i.e. `@github.com/node/node`)
   - (maybe `ghi node/node` for github specifically)
 - [ ] Support git as an archive format
 
+<!-- 
+
 # Windows Notes
 
 ```bat
@@ -281,3 +284,5 @@ powershell "Invoke-Expression ( Invoke-WebRequest -UseBasicParsing https://webin
 ```bat
 powershell ( Invoke-WebRequest -UseBasicParsing https://webinstall.dev/node ).Contents | powershell
 ```
+
+-->