PixelPiggy/CS_float
0
1#!/bin/bash2 3if [ ! -f /config/config.js ]; then4 cp /usr/src/csgofloat/config.example.js /config/config.js5 echo "Copied example config file to /config/config.js, please edit this file and restart"6 exit 17fi8 9if [ ! -d /config/steam_data ]; then10 mkdir /config/steam_data11fi12 13node index.js -c /config/config.js -s /config/steam_data14 