diff options
Diffstat (limited to 'www/xombrero/files/xombrero.in')
-rw-r--r-- | www/xombrero/files/xombrero.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/xombrero/files/xombrero.in b/www/xombrero/files/xombrero.in index 68fedd26db91..6334da746a58 100644 --- a/www/xombrero/files/xombrero.in +++ b/www/xombrero/files/xombrero.in @@ -9,12 +9,12 @@ if [ ! -d "$HOME/.xombrero" ]; then mkdir -p -m 700 $HOME/.xombrero fi -if [ ! -f "$HOME/.xombrero.conf" ]; then +if [ -f "%%EXAMPLESDIR%%/xombrero.conf" ] && [ ! -f "$HOME/.xombrero.conf" ]; then cp %%EXAMPLESDIR%%/xombrero.conf $HOME/.xombrero.conf chmod +w $HOME/.xombrero.conf fi -if [ ! -f "$HOME/.xombrero/playflash.sh" ]; then +if [ -f "%%EXAMPLESDIR%%/playflash.sh" ] && [ ! -f "$HOME/.xombrero/playflash.sh" ]; then cp %%EXAMPLESDIR%%/playflash.sh $HOME/.xombrero/playflash.sh chmod +x $HOME/.xombrero/playflash.sh fi |