aid-installer 0.7.5 → 1.0.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.
- package/VERSION +1 -1
- package/bin/aid +1 -1
- package/bin/aid.ps1 +1 -1
- package/package.json +2 -2
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
1.0.0
|
package/bin/aid
CHANGED
|
@@ -31,7 +31,7 @@ set -uo pipefail
|
|
|
31
31
|
# Bootstrap URL - single place to update when the branch merges to master.
|
|
32
32
|
# Override with AID_INSTALL_URL env var for tests.
|
|
33
33
|
# ---------------------------------------------------------------------------
|
|
34
|
-
AID_INSTALL_URL="${AID_INSTALL_URL:-https://raw.githubusercontent.com/AndreVianna/aid-methodology/
|
|
34
|
+
AID_INSTALL_URL="${AID_INSTALL_URL:-https://raw.githubusercontent.com/AndreVianna/aid-methodology/master/install.sh}"
|
|
35
35
|
|
|
36
36
|
# ---------------------------------------------------------------------------
|
|
37
37
|
# Locate $AID_HOME. The installed dispatcher lives at $AID_HOME/bin/aid.
|
package/bin/aid.ps1
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
# Override with $env:AID_INSTALL_URL for tests.
|
|
31
31
|
# ---------------------------------------------------------------------------
|
|
32
32
|
$script:_AidInstallUrl = if ($env:AID_INSTALL_URL) { $env:AID_INSTALL_URL } else {
|
|
33
|
-
'https://raw.githubusercontent.com/AndreVianna/aid-methodology/
|
|
33
|
+
'https://raw.githubusercontent.com/AndreVianna/aid-methodology/master/install.ps1'
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
# ---------------------------------------------------------------------------
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aid-installer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "AID CLI installer - puts the persistent aid command on PATH via npm",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aid": "bin/aid.js"
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/AndreVianna/aid-methodology"
|
|
34
|
+
"url": "git+https://github.com/AndreVianna/aid-methodology.git"
|
|
35
35
|
}
|
|
36
36
|
}
|