项目作者: tricktux

项目描述 :
Chocolatey package for the distribution of released versions of neovim
高级语言: PowerShell
项目地址: git://github.com/tricktux/choco-neovim.git
创建时间: 2017-05-21T18:32:54Z
项目社区:https://github.com/tricktux/choco-neovim

开源协议:

下载


choco-neovim

Chocolatey package for the distribution of released versions of neovim

Version upgrade checklist

  • nuspec: update version tag.
  • nuspec: update release notes tag.
  • chocolateyinstall.ps1: update $url and $url64
  • chocolateyinstall.ps1: update the checksum and checksum64
    • "c:\ProgramData\chocolatey\tools\checksum.exe" nvim-win32.zip -t=sha256
    • The checksum -t depends on what you have specified in your checksumType

Installation Instructions

  • Install chocolatey
  • From command line choco install neovim
  • Or choco install neovim --pre

Dev Instructions

Docker

  • Instructions to setup the container, where choco-neovim is this repo.
  1. sudo docker pull chocolatey/choco
  2. sudo docker run -ti --rm -v $PWD/choco-neovim:/data chocolatey/choco:latest /bin/bash
  • Always pack after making any changes
  1. choco pack

Testing beta version

  1. choco install neovim --pre -s '%cd%' -fy
  2. choco uninstall neovim --pre -s '%cd%' -fy

Testing regular version

  1. choco install neovim --source . -fy
  2. choco uninstall neovim --source . -fy

Pushing changes

  1. choco apikey --key <key> --source https://push.chocolatey.org
  2. choco push <package> --source https://push.chocolatey.org
  3. # Or in one command
  4. choco push <package> --api-key <key> --source https://push.chocolatey.org