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

12 lines
195 B
Bash
Raw Normal View History

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