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 {