feat: add dashcore (dash-cli, dashd, dash-qt)

This commit is contained in:
AJ ONeal
2023-06-16 07:32:47 +00:00
parent b944352e1b
commit c141ceb6fe
24 changed files with 299 additions and 0 deletions
+9
View File
@@ -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).
+3
View File
@@ -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
+11
View File
@@ -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
+3
View File
@@ -0,0 +1,3 @@
'use strict';
module.exports = require('../dashcore/releases.js');