Skip to content

Commit 4049d70

Browse files
committed
fix(deisctl): escape $HOME in post-install script
Otherwise $HOME was evaluated at the time the installer script was created, meaning everyone would see their unit files had been installed to "/home/jenkins/.deis/units" instead of their actual $HOME dir.
1 parent 7628a13 commit 4049d70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deisctl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ installer:
1616
"./deisctl refresh-units \
1717
&& echo \
1818
&& echo '\033[0;36mdeisctl\033[0m is in the current directory and unit files are' \
19-
&& echo 'in $$HOME/.deis/units. Please move \033[0;36mdeisctl\033[0m to a' \
19+
&& echo 'in \$$HOME/.deis/units. Please move \033[0;36mdeisctl\033[0m to a' \
2020
&& echo 'directory in your search PATH.' \
2121
&& echo \
2222
&& echo 'See http://docs.deis.io/ for documentation.' \

0 commit comments

Comments
 (0)