From 546f157cae0e083ef67f709f124ef30837f557b9 Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Tue, 18 Apr 2023 03:56:12 +0000 Subject: [PATCH] Update 2 files - /home/.chezmoi.yaml.tmpl - /home/dot_local/bin/executable_install-program --- home/.chezmoi.yaml.tmpl | 4 ++-- home/dot_local/bin/executable_install-program | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/home/.chezmoi.yaml.tmpl b/home/.chezmoi.yaml.tmpl index e44c5833..a54dbb8c 100644 --- a/home/.chezmoi.yaml.tmpl +++ b/home/.chezmoi.yaml.tmpl @@ -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 -}} diff --git a/home/dot_local/bin/executable_install-program b/home/dot_local/bin/executable_install-program index b94d88e4..a926313c 100644 --- a/home/dot_local/bin/executable_install-program +++ b/home/dot_local/bin/executable_install-program @@ -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)