dev_debug.sh 267 B

12345678910111213
  1. #!/bin/bash
  2. # LGSM fn_debug_dev function
  3. # Author: Daniel Gibbs
  4. # Website: http://gameservermanagers.com
  5. lgsm_version="061115"
  6. if [ -f ".dev-debug" ]; then
  7. rm .dev-debug
  8. fn_printoknl "Disabled dev-debug"
  9. else
  10. date > .dev-debug
  11. fn_printoknl "Enabled dev-debug"
  12. fi