kibi 0.1.2

A text editor in less than 1024 lines of code with syntax higlighting, search and more.
Documentation
#!/usr/bin/env bash

set -euxo pipefail

if [ "$TRAVIS_OS_NAME" == linux ] && [ "$HOST" != "${TARGET:-$HOST}"  ]; then
  case "$TARGET" in
  'i686-unknown-linux-gnu')
    sudo apt-get update
    sudo apt-get install -y gcc-multilib
    ;;
  esac

  rustup target add "$TARGET";
fi

rustup self update