Created
February 26, 2022 19:23
-
-
Save huevos-y-bacon/93b59173945137523cab9a46335c34b3 to your computer and use it in GitHub Desktop.
MacOS - Simple script to nuke Line 6 Helix Native and all Native user settings for the current user (OS X). See https://line6.com/support/topic/53283-helix-native-code-1116-could-not-decrypt-the-asset/.
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/bash | |
[[ "$1" == "yes" ]] || { echo "Specify \"yes\" to nuke Helix Native"; exit 0; } | |
echo | |
echo "NUKING HELIX NATIVE!" | |
echo | |
FOLDERS=( | |
"${HOME}/Library/Application Support/Line 6" | |
"/Library/Audio/Plug-Ins/Components/Helix Native.component" | |
"/Library/Audio/Plug-Ins/VST/Line 6/Helix Native.vst" | |
"/Library/Audio/Plug-Ins/VST/Line 6/Helix Native.vst3" | |
"/Library/Application Support/Avid/Audio/Plug-Ins Line 6" | |
) | |
for F in "${FOLDERS[@]}";do | |
echo "${F}" | |
rm -r "${F}" | |
echo | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment