zsh-config/zsh/05-vars.zsh
pztrn 9eb7e2a012 Moar fixes to sourcerers.
DEBUG variable force in config loader. If variable isn't defined - force it to be 0.
2015-03-21 20:30:55 +05:00

14 lines
239 B
Bash

# This file includes some variables that vital to all parts of
# this configuration.
OS=`uname`
OS_RELEASE=`uname -r`
# Variable forcers.
# If DEBUG isn't defined - force it to be 0.
if [ -z ${DEBUG} ]; then
DEBUG=0
return 1
fi