You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No script configure.sh, a parte de instalação do VSCode atualmente e:
# Instalação do editor VSCode
wget -O VSCode.tar.gz https://go.microsoft.com/fwlink/?LinkID=620884;
tar -xvzf VSCode.tar.gz;
rm VSCode.tar.gz;
sudo ln -s /home/treinamento/Tools/VSCode-linux-x64/code /usr/local/bin/code;
A ultima linha so funciona se o nome de usuário do usuário for
'treinamento'. Caso o nome seja diferente, a pasta /home/treinamento/* não
existirá.
Para que o script funcione com qualquer usuário, a ultima linha pode ser
substituída por:
sudo ln -s $(pwd)/VSCode-linux-x64/code /usr/local/bin/code;
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AOIt1IGxnG6dfWhkQvMFniIBr5ogLxO2ks5rh3gEgaJpZM4MRyFy>
.
Na Aula 'Manual Ambiente' (https://github.com/ericknilsen/Aulas/wiki/Manual-Ambiente)
No script configure.sh, a parte de instalação do VSCode atualmente e:
A ultima linha so funciona se o nome de usuário do usuário for 'treinamento'. Caso o nome seja diferente, a pasta /home/treinamento/* não existirá.
Para que o script funcione com qualquer usuário, a ultima linha pode ser substituída por:
The text was updated successfully, but these errors were encountered: