vcpkg.cmd 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/install.cmd +2 -1
  2. package/package.json +4 -4
package/install.cmd CHANGED
@@ -11,7 +11,8 @@ if "%errorlevel%" neq "0" (
11
11
  echo Git is not installed. Please install Git and ensure it is in your PATH.
12
12
  exit /b 1
13
13
  )
14
- git clone %REPO% "%TEMP_DIR%" --depth 1
14
+ git clone --depth 1 "%REPO%" "%TEMP_DIR%"
15
+ del /f "vcpkg.exe" >nul 2>&1
15
16
  :: 2. Move the contents of the temp folder to the current directory
16
17
  robocopy /? >nul 2>&1
17
18
  if "%errorlevel%"=="0" (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcpkg.cmd",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "C++ Library Manager for Windows, Linux, and MacOS; Microsoft (2016).",
5
5
  "main": "vcpkg.exe",
6
6
  "bin": {
@@ -26,10 +26,10 @@
26
26
  "author": "wolfram77@gmail.com",
27
27
  "repository": {
28
28
  "type": "git",
29
- "url": "git+https://github.com/nodef/vcpkg.cmd.git"
29
+ "url": "git+https://github.com/nodef/vcpkg.sh.git"
30
30
  },
31
- "homepage": "https://github.com/nodef/vcpkg.cmd#readme",
31
+ "homepage": "https://github.com/nodef/vcpkg.sh#readme",
32
32
  "bugs": {
33
- "url": "https://github.com/nodef/vcpkg.cmd/issues"
33
+ "url": "https://github.com/nodef/vcpkg.sh/issues"
34
34
  }
35
35
  }