Fix vscode exts binaries
This commit is contained in:
parent
58fedcfc70
commit
d98a45a70b
|
@ -32,6 +32,10 @@ for ext in *; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
popd
|
popd
|
||||||
|
# Some extensions contain binaries which must be made executable.
|
||||||
|
# Because the files are now owned by root, extensions can't do that themselves.
|
||||||
|
# This just makes all files executable.
|
||||||
|
chmod --recursive +x /usr/local/lib/vscode-extensions/
|
||||||
|
|
||||||
# Enable codeblocks template.
|
# Enable codeblocks template.
|
||||||
sed -i 's|// project wizards|RegisterWizard(wizProject, _T("soi"), _T("A SOI task"), _T("Console"));|' /usr/share/codeblocks/templates/wizard/config.script
|
sed -i 's|// project wizards|RegisterWizard(wizProject, _T("soi"), _T("A SOI task"), _T("Console"));|' /usr/share/codeblocks/templates/wizard/config.script
|
||||||
|
|
Loading…
Reference in New Issue