install.sh now works without bash, and preserves the trap functionality via exits

This commit is contained in:
Daniel Loffgren 2015-08-20 14:28:32 +09:00
parent 689b4e15a5
commit dd143bcaaa

View File

@ -1,12 +1,11 @@
#!/usr/bin/env bash #!/bin/sh
set -e SCRIPT_DIR=$(dirname $0 || exit $?)
cd $SCRIPT_DIR || exit $?
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
build_file=$SCRIPT_DIR/third_party/ycmd/build.py build_file=$SCRIPT_DIR/third_party/ycmd/build.py
if [[ ! -f "$build_file" ]]; then if [ ! -f "$build_file" ]; then
echo "File $build_file doesn't exist; you probably forgot to run:" echo "File $build_file doesn't exist; you probably forgot to run:"
printf "\n\tgit submodule update --init --recursive\n\n" printf "\n\tgit submodule update --init --recursive\n\n"
exit 1 exit 1
@ -21,7 +20,7 @@ if command_exists python2; then
PYTHON_BINARY=python2 PYTHON_BINARY=python2
fi fi
$PYTHON_BINARY "$build_file" "$@" $PYTHON_BINARY "$build_file" "$@" || exit $?
# Remove old YCM libs if present so that YCM can start. # Remove old YCM libs if present so that YCM can start.
rm -f python/*ycm_core.* &> /dev/null rm -f python/*ycm_core.* &> /dev/null