ansible-role--bashrc/files/bashrc.d/00-bin-gnusidecloud.sh

12 lines
195 B
Bash
Raw Normal View History

2015-11-17 11:07:59 +00:00
#!/bin/sh
###
# Set up GNUSIDE CLOUD environment
#
GNUSIDE_CLOUD_PATH="$HOME/Documents/_GnusideCloud"
2015-11-17 23:57:38 +00:00
if [ -d "$GNUSIDE_CLOUD_PATH/bin" ]; then
2015-11-17 11:07:59 +00:00
export PATH="$GNUSIDE_CLOUD_PATH/bin:$PATH"
fi
2015-11-17 23:57:38 +00:00