Created
November 16, 2017 22:01
-
-
Save dcarroll/318e5f2d44fb6c2e612dd8d817473cdb to your computer and use it in GitHub Desktop.
Uninstall script for Salesforce CLI installed via the Mac OSx installer DMG.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# NOTE: As with any script you download on the internet, | |
# please make sure you understand what each command is | |
# going to do before running it. | |
rm -rf /usr/local/sfdx | |
rm -rf /usr/local/lib/sfdx | |
rm -rf /usr/local/bin/sfdx | |
rm -rf ~/.local/share/sfdx ~/.config/sfdx ~/.cache/sfdx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment