We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ce5ec commit 97220ceCopy full SHA for 97220ce
travis-install.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+cd "$(dirname "$0")"
4
+
5
dep_packages=(
6
doxygen
7
libboost-filesystem-dev
@@ -27,7 +29,7 @@ if [[ -n "${RIME_PLUGINS}" ]]; then
27
29
bash ./install-plugins.sh ${RIME_PLUGINS}
28
30
for plugin_dir in plugins/*; do
31
if [[ -e "${plugin_dir}/travis-install.sh" ]]; then
- bash "${plugin_dir}/travis-install.sh"
32
+ (cd "${plugin_dir}"; bash ./travis-install.sh)
33
fi
34
done
35
0 commit comments