-
Or do I need to delete it and reinstall it? And how would I do that, can I just remove the directory that it created? |
Beta Was this translation helpful? Give feedback.
Answered by
metamacro
Feb 5, 2022
Replies: 1 comment
-
In short you can just To answer more thoroughly, if you look at the Hope this helped. ^^ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rdong8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In short you can just
git pull
andmake local-install
.To answer more thoroughly, if you look at the
local-install:
target of theMakefile
, it has a prerequisiteinstall
, and if you look at the first command of theinstall:
target you'll see how the same code as theuninstall
target is executed, which effectively first removes the old build and the subsequent commands replace it with the new one.Hope this helped. ^^