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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # VSCode Profile Launcher | |
| # Manages VSCode and VSCode Insiders profiles with isolated user data directories | |
| # Detect if we're in WSL and set up paths accordingly | |
| if [[ -n "$WSL_DISTRO_NAME" ]]; then | |
| # In WSL, store profiles in Windows filesystem to avoid locking issues |
OlderNewer