10 lines
226 B
Bash
10 lines
226 B
Bash
|
#!/usr/bin/env sh
|
||
|
#
|
||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "!!! WARNING: Using legacy server, please check https://aka.ms/vscode-remote/faq/old-linux for additional information !!!"
|
||
|
exit 0
|