cpp-msc / on_startup.sh
slimshadow's picture
Update on_startup.sh
22e449c verified
raw
history blame contribute delete
149 Bytes
#!/bin/bash
# Install C++ compiler (g++) before startup.
# Update package lists
apt-get update
# Install g++ (C++ compiler)
apt-get install -y g++