Skip to content

Instantly share code, notes, and snippets.

@AMD-NICK
Last active April 7, 2020 16:34
Show Gist options
  • Save AMD-NICK/2d0b837ab74f421e8bebbd244049e247 to your computer and use it in GitHub Desktop.
Save AMD-NICK/2d0b837ab74f421e8bebbd244049e247 to your computer and use it in GitHub Desktop.
luadev + epoe + fprofiler install script
#/bin/bash
SERV_DIR=$HOME'/gm/path_to/garrysmod'
mkdir 'tmp'
cd 'tmp'
git clone 'https://github.com/Noiwex/luadev.git' luadev
git clone 'https://github.com/Metastruct/EPOE.git' epoe
git clone 'https://github.com/FPtje/FProfiler.git' fprofiler
mkdir 'dev_addons'
cp -r 'luadev/lua' dev_addons/
cp -r 'epoe/lua' dev_addons/
cp -r 'fprofiler/lua' dev_addons/
mkdir -p $SERV_DIR'/lua/bin/' $SERV_DIR'/addons/'
mv dev_addons/lua/bin/* $SERV_DIR'/lua/bin/'
mv dev_addons/ $SERV_DIR'/addons'
cd ..
rm -rf 'tmp'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment