Don't create symlink for 'scripts' directory

Hi,

attached patch avoid to create an unnecessary symbolic link on the scripts
directory.

--
Pierre-Louis
This commit is contained in:
Pierre-Louis Bonicoli 2015-07-17 12:21:08 +02:00 committed by Florent
commit 9b4e4ceb80

View file

@ -22,7 +22,7 @@ All executables in ~/bin/ will be accessible in console, and all python modules
be loadable. Add symbolic links::
$ ln -s $HOME/src/weboob/weboob ~/python/
$ find $HOME/src/weboob/scripts -exec ln -s \{\} ~/bin/ \;
$ find $HOME/src/weboob/scripts -type f -exec ln -s \{\} ~/bin/ \;
Repositories setup
------------------