Compare commits

...

2 Commits

Author SHA1 Message Date
Icedream a5da58108e
Remove keyserver hint in update script. 2018-06-18 13:44:40 +02:00
Icedream e764a40758
Read composer bin-dir from global context. 2018-06-18 13:42:57 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ fi
; do ; do
if ! gpg --list-keys "${key}" >/dev/null 2>&1; then if ! gpg --list-keys "${key}" >/dev/null 2>&1; then
# key does not exist yet # key does not exist yet
gpg --keyserver pgp.mit.edu --recv-keys "${key}" gpg --recv-keys "${key}"
fi fi
done done

View File

@ -123,7 +123,7 @@ section_end
# composer # composer
section "composer" section "composer"
if [ $PROFILE_COMPOSER -gt 0 ]; then if [ $PROFILE_COMPOSER -gt 0 ]; then
PATH="$PATH:$(composer config --absolute bin-dir)" PATH="$PATH:$(composer config --global --absolute bin-dir)"
export PATH export PATH
fi fi
section_end section_end