From 9fa32749b9b1848b91841c67589d61f2aaa5e270 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sun, 13 Aug 2023 15:43:33 +0200 Subject: [PATCH] Remove old cryptic references completely, fuck it --- entrypoint/src/cmd/entrypoint/daemon.go | 1 - entrypoint/src/cmd/entrypoint/main.go | 4 ---- 2 files changed, 5 deletions(-) diff --git a/entrypoint/src/cmd/entrypoint/daemon.go b/entrypoint/src/cmd/entrypoint/daemon.go index fdab2cb..5935fe2 100644 --- a/entrypoint/src/cmd/entrypoint/daemon.go +++ b/entrypoint/src/cmd/entrypoint/daemon.go @@ -280,7 +280,6 @@ var subCmdDaemon = subCmd{ case tryLoadBootstrap(bootstrapDataDirPath): case *bootstrapPath != "" && tryLoadBootstrap(*bootstrapPath): case tryLoadBootstrap(bootstrapAppDirPath): - case tryLoadBootstrap(bootstrap.DataDirPath(legacyEnvDataDirPath)): case err != nil: return fmt.Errorf("attempting to load bootstrap.yml file: %w", err) default: diff --git a/entrypoint/src/cmd/entrypoint/main.go b/entrypoint/src/cmd/entrypoint/main.go index 3fe8eef..35ea788 100644 --- a/entrypoint/src/cmd/entrypoint/main.go +++ b/entrypoint/src/cmd/entrypoint/main.go @@ -29,10 +29,6 @@ var ( envAppDirPath = getAppDirPath() envRuntimeDirPath = filepath.Join(xdg.RuntimeDir, "isle") envDataDirPath = filepath.Join(xdg.DataHome, "isle") - - // Deprecated: envDataDirPath used to be this value, before renaming from - // cryptic-net - legacyEnvDataDirPath = filepath.Join(xdg.DataHome, "cryptic-net") ) func binPath(name string) string {