From 4cd90345af867a1c1dcc378edbc70ff7c05fab30 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 8 Jun 2018 18:42:13 -0400 Subject: [PATCH] advise user to add /tilde/bin to PATH instead of aliases --- tilde | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tilde b/tilde index 4a83f88..20e8434 100755 --- a/tilde +++ b/tilde @@ -53,8 +53,13 @@ class TildeLauncher: for c in self.tc.list(argv[1:]): print " tilde contrib "+c elif argv[0]=="bootstrap": - for c in self.tc.list([],False): - print("alias {0}=\"tilde contrib {0}\"".format(c)) + print(""" + you might have to adjust this if you're not using bash + (you just need to add /tilde/bin to your PATH) + + run this: + echo 'export PATH=$PATH:/tilde/bin' >> ~/.bashrc + """) else: getattr(self.tc,argv[0])(argv[1:])