Skip to content

Commit

Permalink
fix(travis-install.sh): working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Apr 2, 2019
1 parent f4ce5ec commit 97220ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion travis-install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

cd "$(dirname "$0")"

dep_packages=(
doxygen
libboost-filesystem-dev
Expand Down Expand Up @@ -27,7 +29,7 @@ if [[ -n "${RIME_PLUGINS}" ]]; then
bash ./install-plugins.sh ${RIME_PLUGINS}
for plugin_dir in plugins/*; do
if [[ -e "${plugin_dir}/travis-install.sh" ]]; then
bash "${plugin_dir}/travis-install.sh"
(cd "${plugin_dir}"; bash ./travis-install.sh)
fi
done
fi

0 comments on commit 97220ce

Please sign in to comment.