Update 2 files
- /home/.chezmoi.yaml.tmpl - /home/dot_local/bin/executable_install-program
This commit is contained in:
parent
d86e17c5ef
commit
546f157cae
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
|||
{{- $githubUsername := (default "ProfessorManhattan" (env "GITHUB_USERNAME")) -}}
|
||||
{{- $gmailAddress := (default "blzalewski@gmail.com" (env "GMAIL_ADDRESS")) -}}
|
||||
{{- $gpgKeyId := (default "0xF0A300E4199A1C33" (env "KEYID")) -}}
|
||||
{{- $hostname := (default "alpha" (env "HOSTNAME_ID")) -}}
|
||||
{{- $hostname := (default "alpha" (env "HOST")) -}}
|
||||
{{- $locale := (output "echo" "$LANG") }}
|
||||
{{- $name := (default "Brian Zalewski" (env "FULL_NAME")) -}}
|
||||
{{- $restricted := (default false (env "WORK_ENVIRONMENT")) -}}
|
||||
|
@ -106,7 +106,7 @@
|
|||
{{- if not (env "PUBLIC_SERVICES_DOMAIN") -}}
|
||||
{{- $domain = promptStringOnce $data.user "domain" "Domain name" $domain -}}
|
||||
{{- end -}}
|
||||
{{- if not (env "HOSTNAME_ID") -}}
|
||||
{{- if not (env "HOST") -}}
|
||||
{{- $hostname = promptStringOnce $data.host "hostname" "Hostname ID" $hostname -}}
|
||||
{{- end -}}
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@ const osPlatform = osPlatformData === 'win32' ? 'windows' : osPlatformData
|
|||
|
||||
// Download the installation map
|
||||
async function downloadInstallData() {
|
||||
const response = await fetch('https://gitlab.com/megabyte-labs/install.doctor/-/raw/master/software.yml')
|
||||
const response = await fetch('https://github.com/megabyte-labs/install.doctor/raw/master/software.yml')
|
||||
if (response.ok) {
|
||||
const text = await response.text()
|
||||
return YAML.parse(text)
|
||||
|
|
Loading…
Reference in a new issue