mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-23 22:16:48 +00:00
feat: add dashcore (dash-cli, dashd, dash-qt)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
---
|
||||
title: dash-cli (alias)
|
||||
homepage: https://webinstall.dev/dashcore
|
||||
tagline: |
|
||||
`dash-cli` (dash daemon) is an alias for `dashcore` (the dash suite)
|
||||
alias: dashcore
|
||||
---
|
||||
|
||||
See [Dash Core](/dashcore).
|
||||
@@ -0,0 +1,3 @@
|
||||
echo "'dash-cli@$Env:WEBI_TAG' is an alias for 'dashcore@$Env:WEBI_VERSION'"
|
||||
IF ($Env:WEBI_HOST -eq $null -or $Env:WEBI_HOST -eq "") { $Env:WEBI_HOST = "https://webinstall.dev" }
|
||||
curl.exe -fsSL "$Env:WEBI_HOST/dashcore@$Env:WEBI_VERSION" | powershell
|
||||
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set -u
|
||||
|
||||
function __redirect_alias_dashcore() {
|
||||
echo "'dash-cli@${WEBI_TAG:-}' (project) is an alias for 'dashcore@${WEBI_VERSION:-}' (command)"
|
||||
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
||||
curl -fsSL "$WEBI_HOST/dashcore@${WEBI_VERSION:-}" | bash
|
||||
}
|
||||
|
||||
__redirect_alias_dashcore
|
||||
@@ -0,0 +1,3 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = require('../dashcore/releases.js');
|
||||
Reference in New Issue
Block a user