Compare commits

..

No commits in common. "a5da58108e0c74637c0c881b08eee3a34c7c682c" and "86e656ab203d396e94aff785f241e4d091cf421b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

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

View File

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