File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ repository
55.vagrant
66keyrings
77/tmp
8- .idea
98
109dist /
1110
Original file line number Diff line number Diff line change @@ -105,6 +105,25 @@ above in "Upgrading Without Losing Data". If it turns out that the upgrade to
105105version. Remove the lines you added to your shell RC file, and add back in the
106106lines you removed or commented out.
107107
108+ ### Removing old files
109+
110+ ** Only do this after you've completed all the steps above and have verified
111+ your new asdf installation is working correctly!** After upgrade there are
112+ various files you can remove from the old Bash-script based versions of asdf.
113+ Most of the files in your data directory (typically ` ~/.asdf/ ` ) can be removed.
114+ The only directories that must be ** kept** are:
115+
116+ * ` downloads/ `
117+ * ` installs/ `
118+ * ` plugins/ `
119+ * ` shims/ `
120+
121+ The rest can be deleted. This can be done in one command with ` find ` :
122+
123+ ```
124+ find . -maxdepth 1 -not -name downloads -not -name plugins -not -name installs -not -name shims -exec rm -rf {} \;
125+ ```
126+
108127## Breaking Changes
109128
110129### Hyphenated commands have been removed
You can’t perform that action at this time.
0 commit comments