Skip to content

Commit

Permalink
Silence internall messages when 'install'
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Brandt committed Dec 11, 2017
1 parent 2193e97 commit 6f63891
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions bin/create_links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
create_links(){
local HERE=$(cd `dirname $BASH_SOURCE`; pwd)
local HSRC=${HERE}/src
local LINKS=${HERE}/links
local LINKS=${HERE}/links
[[ -d $LINKS ]] || mkdir $LINKS

for bin in `cat ${HSRC}/heasoft_binaries.txt`; do
ln -s ${HSRC}/_headocker.sh ${LINKS}/$bin
ln -sf ${HSRC}/_headocker.sh ${LINKS}/$bin
done
}
create_links

4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ source_create(){

source ${HERE}/bin/create_links.sh

echo "Run the following line to make docker-heasoft binaries available"
echo "on your environment:"
echo "# Run the following line to make docker-heasoft binaries available"
echo "# on your environment:"
echo "#----------"
echo "export PATH=\"${HERE}/bin/links:\$PATH\""
echo "#----------"
Expand Down

0 comments on commit 6f63891

Please sign in to comment.