about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-05T14·29+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-05T15·04+0000
commitc6dac53b72da08bf5786755c4f59f7c829e76a1e (patch)
treec7e3ffaceaa9dd1444076350e27db14e2b8344d7 /tools
parent77633d22ae10ef3e5435930dce119b8fb76ac83f (diff)
Drop support for cloudtop
While I do still technically own a Google cloudtop device, I haven't used it in
at least six months. In the interest of pruning non-critical dependencies, I'm
deleting it. I can alway restore it thanks to Git.
Diffstat (limited to 'tools')
-rw-r--r--tools/symlinkManager/main.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/symlinkManager/main.go b/tools/symlinkManager/main.go
index 5d133e37d97b..e682867fb850 100644
--- a/tools/symlinkManager/main.go
+++ b/tools/symlinkManager/main.go
@@ -12,9 +12,8 @@ import (
 )
 
 var hostnames = map[string]string{
-	os.Getenv("DESKTOP"):  "desktop",
-	os.Getenv("LAPTOP"):   "work_laptop",
-	os.Getenv("CLOUDTOP"): "cloudtop",
+	os.Getenv("DESKTOP"): "desktop",
+	os.Getenv("LAPTOP"):  "work_laptop",
 }
 
 func main() {